From ba171eee72076b6e346a6b9e1505cd2f7b14d69b Mon Sep 17 00:00:00 2001 From: Michele Guerini Rocco Date: Tue, 4 Feb 2025 12:04:31 +0100 Subject: [PATCH] default.nix: fix missing python dependency --- default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/default.nix b/default.nix index ed6ddd8..89e5d3e 100644 --- a/default.nix +++ b/default.nix @@ -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;