MH-P1/shell.nix

13 lines
181 B
Nix
Raw Normal View History

2021-03-15 18:19:52 +01:00
{ pkgs ? import <nixpkgs> { } }:
2021-03-08 19:01:40 +01:00
with pkgs;
2021-04-15 23:28:57 +02:00
mkShell {
2021-04-20 13:22:01 +02:00
buildInputs = [
python39
python39Packages.numpy
python39Packages.pandas
python39Packages.XlsxWriter
];
2021-04-15 23:28:57 +02:00
}