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, ... }: {
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
];
}