python3Packages.librosa: fix build on darwin

Follow upstream to disable test_pyin_multi_center on darwin:

> Note: this test has issues on OSX with libopenblas 0.3.26, so we
disable it for now.  We may re-enable it some time in the future.
This commit is contained in:
Zhong Jianxin 2024-03-25 19:14:12 +08:00
parent e579156a5f
commit 193f41056b

View File

@ -1,4 +1,5 @@
{ lib { lib
, stdenv
, buildPythonPackage , buildPythonPackage
, fetchFromGitHub , fetchFromGitHub
, fetchpatch , fetchpatch
@ -108,6 +109,9 @@ buildPythonPackage rec {
"test_load_resample" "test_load_resample"
# does not converge # does not converge
"test_nnls_vector" "test_nnls_vector"
] ++ lib.optionals stdenv.isDarwin [
# https://github.com/librosa/librosa/pull/1808
"test_pyin_multi_center"
]; ];
meta = with lib; { meta = with lib; {