From a12db7cc7d47625584109ae4e386952fed5c559b Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Thu, 3 Apr 2025 08:45:34 +0200 Subject: [PATCH] python313Packages.scipy: disable racy test Actually kills a bunch of tests, but I'm not sure whether more granular targeting is possible. --- pkgs/development/python-modules/scipy/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/development/python-modules/scipy/default.nix b/pkgs/development/python-modules/scipy/default.nix index 4e152650f874..6b1249783a22 100644 --- a/pkgs/development/python-modules/scipy/default.nix +++ b/pkgs/development/python-modules/scipy/default.nix @@ -131,6 +131,8 @@ buildPythonPackage { disabledTests = [ "test_cumulative_simpson_against_simpson_with_default_dx" + # https://github.com/scipy/scipy/issues/22789 + "test_funcs" ] ++ lib.optionals (stdenv.hostPlatform.isDarwin && stdenv.hostPlatform.isAarch64) [ # The following tests are broken on aarch64-darwin with newer compilers and library versions.