From 2b32ca08badaa6a88cb46757a7a2227d106d1a7b Mon Sep 17 00:00:00 2001 From: Guillaume Desforges Date: Fri, 2 Feb 2024 15:06:30 +0100 Subject: [PATCH] python3Packages.librosa: fix Fixes https://github.com/NixOS/nixpkgs/issues/285489 Ignore test `test_nnls_vector` as it prevents building the package with Nix. This test fails because of a call to `scipy.optimize.nnls` that reaches the maximum number of iterations. --- pkgs/development/python-modules/librosa/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/development/python-modules/librosa/default.nix b/pkgs/development/python-modules/librosa/default.nix index a93b6b0d99cb..48eae549523f 100644 --- a/pkgs/development/python-modules/librosa/default.nix +++ b/pkgs/development/python-modules/librosa/default.nix @@ -106,6 +106,8 @@ buildPythonPackage rec { "test_example" "test_example_info" "test_load_resample" + # does not converge + "test_nnls_vector" ]; meta = with lib; {