22 lines
379 B
Nix
22 lines
379 B
Nix
{
|
|
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
|
|
matplotlib
|
|
mypy
|
|
numpy
|
|
mysqlclient
|
|
pandas
|
|
pillow
|
|
virtualenv
|
|
];
|
|
}
|