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
+  ];
+}