default.nix: fix missing python dependency

This commit is contained in:
Michele Guerini Rocco 2025-02-04 12:04:31 +01:00
parent 3f75cbd357
commit ba171eee72
Signed by: rnhmjoj
GPG Key ID: BFBAF4C975F76450

View File

@ -33,7 +33,7 @@ let
src = builtins.filterSource sieve ./.;
format = "other";
propagatedBuildInputs = with pkgs.python3Packages; [ numpy matplotlib ];
propagatedBuildInputs = with pkgs.python3Packages; [ numpy scipy matplotlib ];
makeFlags = [ "PREFIX=$(out)" ];
dontConfigure = true;