MH-P2/shell.nix

13 lines
181 B
Nix
Raw Normal View History

2021-04-29 12:33:46 +02:00
{ pkgs ? import <nixpkgs> { } }:
2021-04-26 17:49:50 +02:00
with pkgs;
mkShell {
buildInputs = [
2021-04-29 12:33:46 +02:00
python39
python39Packages.numpy
python39Packages.pandas
python39Packages.XlsxWriter
2021-04-26 17:49:50 +02:00
];
}