MH-P1/shell.nix

6 lines
110 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-03-15 18:19:52 +01:00
mkShell { buildInputs = [ python39 python39Packages.pandas ]; }