commit 66c8b34374abd476e5d246f7ae029399c86c3fb0 Author: Sweetbread Date: Tue Oct 14 04:06:35 2025 +0300 init commit 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 + ''; + }