init commit

This commit is contained in:
2025-10-14 04:06:35 +03:00
commit 66c8b34374
+18
View File
@@ -0,0 +1,18 @@
{ pkgs ? import <nixpkgs> {} }: let
pypkgs = pkgs.python3Packages;
in
pkgs.mkShell {
buildInputs = with pypkgs; [
python
opencv4
virtualenv
pkgs.jupyter
ipython
matplotlib
scikit-image
];
shellHook = ''
jupyter notebook
'';
}