From cc82778d93ecef2a1a2f05f2c16c310d1abead76 Mon Sep 17 00:00:00 2001 From: Franck Cuny Date: Sat, 7 Jan 2023 17:07:37 -0800 Subject: fix(home/python): don't specify the version Use what ever is the latest version set by nix, and don't install poetry (it seems to be broken at the moment). --- home/python/default.nix | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'home') diff --git a/home/python/default.nix b/home/python/default.nix index fea3054..fa5e0d8 100644 --- a/home/python/default.nix +++ b/home/python/default.nix @@ -1,7 +1,7 @@ { config, pkgs, lib, ... }: let cfg = config.my.home.python; - pythonEnv = pkgs.python310.withPackages (p: with p; [ + pythonEnv = pkgs.python3.withPackages (p: with p; [ black # format isort # format pylsp-mypy # language server protocol @@ -9,7 +9,6 @@ let types-requests # types for requests (for mypy) pip # to install dependencies ipython # nicer REPL - poetry # to install dependencies ]); in { -- cgit 1.4.1