12 lines
176 B
Nix
12 lines
176 B
Nix
|
pkgs: {
|
||
|
paths = with pkgs; [
|
||
|
pipenv
|
||
|
(python310.withPackages ( packages: with packages; [
|
||
|
matplotlib
|
||
|
numpy
|
||
|
pandas
|
||
|
scipy
|
||
|
]))
|
||
|
];
|
||
|
}
|