MH-P1/shell.nix

8 lines
135 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 {
buildInputs = [ python39 python39Packages.numpy python39Packages.pandas ];
}