about summary refs log tree commit diff
path: root/pkgs/development/python-modules/scipy
diff options
context:
space:
mode:
authorVladimír Čunát <v@cunat.cz>2023-01-21 09:53:45 +0100
committerVladimír Čunát <v@cunat.cz>2023-01-21 10:01:17 +0100
commit020eb79d627550160864631e869c48ad67ecbe02 (patch)
tree051f051bac36d718f197a10fffdd58d6cfab5c51 /pkgs/development/python-modules/scipy
parentfa7d14584cf4d40e15e884061e7340d1a7ae020d (diff)
python3Packages.scipy: schedule as big-parallel on Hydra
After 9503adb666001 the tests can take many hours or even time out:
https://hydra.nixos.org/job/nixpkgs/staging-next/python310Packages.scipy.x86_64-linux#tabs-charts
That's because without big-parallel we use --cores 2;
I just hope that with big-parallel it won't be exploding
like described around the 9503adb666001 commit.
Diffstat (limited to 'pkgs/development/python-modules/scipy')
-rw-r--r--pkgs/development/python-modules/scipy/default.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/scipy/default.nix b/pkgs/development/python-modules/scipy/default.nix
index bec9752bc445f..4be254113bc33 100644
--- a/pkgs/development/python-modules/scipy/default.nix
+++ b/pkgs/development/python-modules/scipy/default.nix
@@ -67,6 +67,8 @@ buildPythonPackage rec {
     runHook postCheck
   '';
 
+  requiredSystemFeatures = [ "big-parallel" ]; # the tests need lots of CPU time
+
   passthru = {
     blas = numpy.blas;
   };