t14_legacy_config/home/shenvs/python.nix
2023-02-13 09:24:19 -06:00

17 lines
242 B
Nix

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