nixos/pkgsets/python3.nix

54 lines
821 B
Nix
Raw Normal View History

{
2023-09-11 20:23:04 +02:00
config,
lib,
fn,
pkgs,
...
}:
with lib; {
config.machine.pkgsets.python3.pkgwrap = pkgs.python310.withPackages (ps: (fn.pkgFilter config.machine.pkgsets.python3.pkgs));
2023-01-29 14:31:48 +01:00
config.machine.pkgsets.python3.pkgs = with pkgs.python310Packages; [
GitPython
bpython
configparser
2023-01-29 14:31:48 +01:00
pysrt
emoji
epc
flake8
genanki
2023-09-11 20:23:04 +02:00
matplotlib
ipywidgets
2021-10-28 09:46:12 +02:00
python-docx
mypy
numpy
2021-10-28 09:46:12 +02:00
mysqlclient
pandas
# ocv3 scipy scikitimage (imutils.override { opencv3 = ocv3; })
paho-mqtt
pep8
pillow
pip
plotly
pyflakes
2021-10-28 09:46:12 +02:00
pypdf2
# pygame pygame_sdl2
pylama
2023-09-11 20:23:04 +02:00
pylint
toml
pyopengl
pyproj
pytest
requests
schedule
scipy
selenium
2021-10-28 09:46:12 +02:00
setuptools
telegram
tkinter
toolz
2021-10-28 09:46:12 +02:00
tifffile
virtualenv
2021-10-28 09:46:12 +02:00
# xdot
];
}