t14_legacy_config/home/shenvs/proba.nix

15 lines
206 B
Nix
Raw Normal View History

2022-08-26 05:43:18 +02:00
{pkgs, ...}:
{
2022-08-30 07:10:29 +02:00
static = true;
2022-08-26 05:43:18 +02:00
packages = with pkgs; [
2022-08-16 04:36:17 +02:00
pipenv
(python310.withPackages ( packages: with packages; [
matplotlib
numpy
pandas
scipy
]))
];
}