infra/nix/modules/flake-parts/perSystem/default.nix

38 lines
537 B
Nix
Raw Permalink Normal View History

2024-11-15 10:17:56 +01:00
{ pkgs, ... }:
{
packages = {
2024-11-15 10:17:56 +01:00
myPython = pkgs.python310.withPackages (
ps:
with ps;
2024-11-15 10:17:56 +01:00
[
pep8
yapf
flake8
# autopep8 (broken)
# pylint (broken)
ipython
llfuse
dugong
defusedxml
wheel
pip
virtualenv
cffi
# pyopenssl
urllib3
# mistune (insecure)
sympy
2024-11-15 10:17:56 +01:00
flask
2024-11-15 10:17:56 +01:00
pyaml
requests
]
++ [
pkgs.pypi2nix
pkgs.libffi
]
);
};
}