diff --git a/pkgs/development/python-modules/blosc2/default.nix b/pkgs/development/python-modules/blosc2/default.nix index 8e835b2e1a37..b0c754f05411 100644 --- a/pkgs/development/python-modules/blosc2/default.nix +++ b/pkgs/development/python-modules/blosc2/default.nix @@ -76,6 +76,10 @@ buildPythonPackage rec { ] ++ lib.optionals runTorchTests [ torch ]; + disabledTestMarks = [ + "network" + ]; + disabledTests = [ # attempts external network requests "test_with_remote" @@ -85,6 +89,14 @@ buildPythonPackage rec { "test_expand_dims" ]; + disabledTestPaths = [ + # Threads grow without limit + # https://github.com/Blosc/python-blosc2/issues/556 + "tests/ndarray/test_lazyexpr.py" + "tests/ndarray/test_lazyexpr_fields.py" + "tests/ndarray/test_reductions.py" + ]; + passthru.c-blosc2 = c-blosc2; meta = {