Merge pull request #299369 from azuwis/librosa

python3Packages.librosa: fix build on darwin
This commit is contained in:
Nick Cao 2024-03-29 10:14:37 -04:00 committed by GitHub
commit 271291303c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

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