diff --git a/pkgs/development/python-modules/librosa/default.nix b/pkgs/development/python-modules/librosa/default.nix index db1e9f5fdae6..76740d890174 100644 --- a/pkgs/development/python-modules/librosa/default.nix +++ b/pkgs/development/python-modules/librosa/default.nix @@ -107,6 +107,16 @@ buildPythonPackage rec { "test_axis_bound_warning" "test_auto_aspect" ] + ++ lib.optionals (stdenv.hostPlatform.isDarwin && stdenv.hostPlatform.isAarch64) [ + # AssertionError (numerical comparison fails) + "test_beat_track_multi" + "test_beat_track_multi_bpm_vector" + "test_melspectrogram_multi" + "test_melspectrogram_multi_time" + "test_nnls_matrix" + "test_nnls_multiblock" + "test_onset_detect" + ] ++ lib.optionals (stdenv.hostPlatform.isLinux && stdenv.hostPlatform.isAarch64) [ # Flaky (numerical comparison fails) "test_istft_multi"