From 66c8b34374abd476e5d246f7ae029399c86c3fb0 Mon Sep 17 00:00:00 2001 From: Sweetbread Date: Tue, 14 Oct 2025 04:06:35 +0300 Subject: [PATCH] init commit --- shell.nix | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 shell.nix diff --git a/shell.nix b/shell.nix new file mode 100644 index 0000000..286b283 --- /dev/null +++ b/shell.nix @@ -0,0 +1,18 @@ +{ pkgs ? import {} }: let + pypkgs = pkgs.python3Packages; +in + pkgs.mkShell { + buildInputs = with pypkgs; [ + python + opencv4 + virtualenv + pkgs.jupyter + ipython + matplotlib + scikit-image + ]; + + shellHook = '' + jupyter notebook + ''; + }