From c866015907cac4e0e27462eb64330800227a1de0 Mon Sep 17 00:00:00 2001 From: coolneng Date: Wed, 19 Oct 2022 17:13:13 +0200 Subject: [PATCH] Add python data science environment --- python-data-science.nix | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 python-data-science.nix diff --git a/python-data-science.nix b/python-data-science.nix new file mode 100644 index 0000000..345cf04 --- /dev/null +++ b/python-data-science.nix @@ -0,0 +1,15 @@ +{ config, lib, pkgs, ... }: + +with pkgs; + +{ + buildInputs = [ + python3 + python3Packages.jupyter + python3Packages.numpy + python3Packages.pandas + python3Packages.scikit-learn + python3Packages.matplotlib + python3Packages.seaborn + ]; +}