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