diff options
| author | Franck Cuny <franck@fcuny.net> | 2023-01-07 17:07:37 -0800 |
|---|---|---|
| committer | Franck Cuny <franck@fcuny.net> | 2023-01-07 17:07:37 -0800 |
| commit | cc82778d93ecef2a1a2f05f2c16c310d1abead76 (patch) | |
| tree | 585167a23c010468e51e87ca71cdbf2534eace99 /home/python/default.nix | |
| parent | fix(home/sway): set the environment variable correctly (diff) | |
| download | infra-cc82778d93ecef2a1a2f05f2c16c310d1abead76.tar.gz | |
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).
Diffstat (limited to '')
| -rw-r--r-- | home/python/default.nix | 3 |
1 files changed, 1 insertions, 2 deletions
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 { |
