universe/profiles/develop/programming/python.nix

14 lines
229 B
Nix

{ pkgs, lib, ... }: {
environment.systemPackages = with pkgs; lib.lists.flatten [
python3
(with python39Packages; [
pip
black
mypy
jupyter
])
python-language-server
python310
];
}