From 4e6fcfb320d4e3fa6a8af33d14bfd2e23f6d9cc8 Mon Sep 17 00:00:00 2001 From: Infinidoge Date: Sat, 25 Dec 2021 02:16:09 -0500 Subject: [PATCH] programming/python: add python dependencies --- profiles/develop/programming/python.nix | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/profiles/develop/programming/python.nix b/profiles/develop/programming/python.nix index bb1fb0c..c3fdccd 100644 --- a/profiles/develop/programming/python.nix +++ b/profiles/develop/programming/python.nix @@ -1,14 +1,19 @@ { pkgs, lib, ... }: { environment.systemPackages = with pkgs; lib.lists.flatten [ python3 + python310 (with python39Packages; [ - pip black - mypy + isort jupyter + mypy + nose + pip + pyflakes + pyls-isort + pytest ]) python-language-server - - python310 + pipenv ]; }