16 lines
225 B
Nix
16 lines
225 B
Nix
{pkgs, ...}:
|
|
{
|
|
static = true;
|
|
|
|
packages = with pkgs; [
|
|
pipenv
|
|
(python310.withPackages ( packages: with packages; [
|
|
matplotlib
|
|
numpy
|
|
pandas
|
|
scipy
|
|
setuptools
|
|
]))
|
|
];
|
|
}
|