diff options
Diffstat (limited to '')
-rw-r--r-- | home/python/default.nix | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/home/python/default.nix b/home/python/default.nix index cd866be..a679798 100644 --- a/home/python/default.nix +++ b/home/python/default.nix @@ -2,9 +2,10 @@ let cfg = config.my.home.python; pythonEnv = pkgs.python310.withPackages (p: with p; [ - requests - black - isort + black # format + isort # format + pylsp-mypy # language server protocol + requests # HTTP library # HTTP lib ]); in { |