nixos/pkgsets/python3.nix

23 lines
379 B
Nix
Raw Permalink Normal View History

{
2023-09-11 20:23:04 +02:00
config,
lib,
fn,
pkgs,
...
}:
with lib; {
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
flake8
genanki
2023-09-11 20:23:04 +02:00
matplotlib
mypy
numpy
2021-10-28 09:46:12 +02:00
mysqlclient
pandas
pillow
virtualenv
];
}