diff options
author | Franck Cuny <franck@fcuny.net> | 2022-10-17 19:14:24 -0700 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2022-10-17 19:15:22 -0700 |
commit | bfc1bf9db7e80a1b153a39142a2d2aa6ee735ba5 (patch) | |
tree | 237276f67e8cfc6742ca8b1c8202ff8dbb17e1fb /home/python | |
parent | flake.lock: Update (diff) | |
download | world-bfc1bf9db7e80a1b153a39142a2d2aa6ee735ba5.tar.gz |
feat(home/python): add lsp/mypy packages
Diffstat (limited to 'home/python')
-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 { |