MH-P3/shell.nix

13 lines
181 B
Nix
Raw Normal View History

2021-06-22 03:35:47 +02:00
{ pkgs ? import <nixpkgs> { } }:
2021-06-22 01:30:06 +02:00
with pkgs;
mkShell {
buildInputs = [
2021-06-22 03:35:47 +02:00
python39
python39Packages.numpy
python39Packages.pandas
python39Packages.XlsxWriter
2021-06-22 01:30:06 +02:00
];
}