From dbc407279dcd09caf0bb1a9d09c33c9d4380a957 Mon Sep 17 00:00:00 2001 From: Samuel Loury Date: Fri, 7 Aug 2020 15:25:07 +0200 Subject: [PATCH] Add the shell.nix file --- module3/exo2/shell.nix | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 module3/exo2/shell.nix diff --git a/module3/exo2/shell.nix b/module3/exo2/shell.nix new file mode 100644 index 0000000..ba3534e --- /dev/null +++ b/module3/exo2/shell.nix @@ -0,0 +1,15 @@ +with import {}; + +mkShell rec { + buildInputs = [ + python38 + python38.pkgs.pandas + python38.pkgs.seaborn + # python38.pkgs.ipython + # python38.pkgs.ipdb + ]; + DATA = fetchurl { + url = "https://www.sentiweb.fr/datasets/incidence-PAY-7.csv"; + sha256 = "43a4a004272416b5b0b41e9a725e44899729a72f7ff3cccb182700f4f78ade79"; + }; +} -- 2.18.1