Remove most python packages and use default python version.
This commit is contained in:
parent
a85f79ca05
commit
2be01a1edc
2 changed files with 3 additions and 34 deletions
|
@ -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
|
||||
];
|
||||
}
|
||||
|
|
|
@ -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];
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue