Merge pull request #666 from undefined-moe/patch-2

flake: add scipy to dependencies
This commit is contained in:
SengokuCola
2025-04-05 00:19:45 +08:00
committed by GitHub

View File

@@ -18,10 +18,11 @@
devShells.default = pkgs.mkShell { devShells.default = pkgs.mkShell {
name = "python-venv"; name = "python-venv";
venvDir = "./.venv"; venvDir = "./.venv";
buildInputs = [ buildInputs = with pythonPackages; [
pythonPackages.python python
pythonPackages.venvShellHook venvShellHook
pythonPackages.numpy scipy
numpy
]; ];
postVenvCreation = '' postVenvCreation = ''
@@ -35,4 +36,4 @@
''; '';
}; };
}); });
} }