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 {
name = "python-venv";
venvDir = "./.venv";
buildInputs = [
pythonPackages.python
pythonPackages.venvShellHook
pythonPackages.numpy
buildInputs = with pythonPackages; [
python
venvShellHook
scipy
numpy
];
postVenvCreation = ''