IN-P1/shell.nix

9 lines
153 B
Nix
Raw Permalink Normal View History

2020-10-14 19:14:17 +02:00
{ pkgs ? import <nixpkgs> { } }:
with pkgs;
2020-10-28 19:29:50 +01:00
mkShell {
buildInputs =
[ python38 python38Packages.pandas python38Packages.scikitlearn ];
}