t14_legacy_config/home/shenvs/python.nix
2022-11-29 12:33:51 -06:00

16 lines
225 B
Nix

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