18 lines
296 B
Nix
18 lines
296 B
Nix
{ pkgs, lib, ... }: {
|
|
environment.systemPackages = with pkgs; lib.lists.flatten [
|
|
python310
|
|
(with python310Packages; [
|
|
black
|
|
isort
|
|
jupyter
|
|
mypy
|
|
nose
|
|
pip
|
|
pyflakes
|
|
pyls-isort
|
|
pytest
|
|
])
|
|
python-language-server
|
|
pipenv
|
|
];
|
|
}
|