From f01cef9982c7a8782df1ca7df0fabcb02db7a822 Mon Sep 17 00:00:00 2001 From: Robert Scott Date: Fri, 27 May 2022 00:18:40 +0100 Subject: [PATCH] python3Packages.nitime: disable test test_FilterAnalyzer fails on all platforms after scipy 1.8.0 bump --- pkgs/development/python-modules/nitime/default.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/development/python-modules/nitime/default.nix b/pkgs/development/python-modules/nitime/default.nix index f9c84acef882..183e003d2860 100644 --- a/pkgs/development/python-modules/nitime/default.nix +++ b/pkgs/development/python-modules/nitime/default.nix @@ -25,6 +25,11 @@ buildPythonPackage rec { buildInputs = [ cython ]; propagatedBuildInputs = [ numpy scipy matplotlib networkx nibabel ]; + disabledTests = [ + # https://github.com/nipy/nitime/issues/197 + "test_FilterAnalyzer" + ]; + meta = with lib; { homepage = "https://nipy.org/nitime"; description = "Algorithms and containers for time-series analysis in time and spectral domains";