Remove most python packages and use default python version.

This commit is contained in:
Kevin Baensch 2024-05-09 16:56:17 +02:00
parent a85f79ca05
commit 2be01a1edc
Signed by: derped
GPG key ID: C0F1D326C7626543
2 changed files with 3 additions and 34 deletions

View file

@ -6,48 +6,17 @@
...
}:
with lib; {
config.machine.pkgsets.python3.pkgwrap = pkgs.python310.withPackages (ps: (fn.pkgFilter config.machine.pkgsets.python3.pkgs));
config.machine.pkgsets.python3.pkgs = with pkgs.python310Packages; [
GitPython
config.machine.pkgsets.python3.pkgwrap = pkgs.python3.withPackages (ps: (fn.pkgFilter config.machine.pkgsets.python3.pkgs));
config.machine.pkgsets.python3.pkgs = with pkgs.python3Packages; [
bpython
configparser
pysrt
emoji
epc
flake8
genanki
matplotlib
ipywidgets
python-docx
mypy
numpy
mysqlclient
pandas
# ocv3 scipy scikitimage (imutils.override { opencv3 = ocv3; })
paho-mqtt
pep8
pillow
pip
plotly
pyflakes
pypdf2
# pygame pygame_sdl2
pylama
pylint
toml
pyopengl
pyproj
pytest
requests
schedule
scipy
selenium
setuptools
telegram
tkinter
toolz
tifffile
virtualenv
# xdot
];
}

View file

@ -20,5 +20,5 @@ with lib;
];
};
};
machine.pkgsets.python3.pkgs = with pkgs.python310Packages; [py3status pytz tzlocal];
machine.pkgsets.python3.pkgs = with pkgs.python3Packages; [py3status pytz tzlocal];
}