programming/python: add python dependencies
This commit is contained in:
parent
685ce5bfe7
commit
4e6fcfb320
1 changed files with 9 additions and 4 deletions
|
@ -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
|
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue