programming/python: add python dependencies

This commit is contained in:
Infinidoge 2021-12-25 02:16:09 -05:00
parent 685ce5bfe7
commit 4e6fcfb320

View file

@ -1,14 +1,19 @@
{ pkgs, lib, ... }: { { pkgs, lib, ... }: {
environment.systemPackages = with pkgs; lib.lists.flatten [ environment.systemPackages = with pkgs; lib.lists.flatten [
python3 python3
python310
(with python39Packages; [ (with python39Packages; [
pip
black black
mypy isort
jupyter jupyter
mypy
nose
pip
pyflakes
pyls-isort
pytest
]) ])
python-language-server python-language-server
pipenv
python310
]; ];
} }