diff --git a/pkgs/development/python-modules/aubio/default.nix b/pkgs/development/python-modules/aubio/default.nix index 64b89bb1897f..babb22ee434f 100644 --- a/pkgs/development/python-modules/aubio/default.nix +++ b/pkgs/development/python-modules/aubio/default.nix @@ -31,16 +31,6 @@ buildPythonPackage rec { }) ]; - buildInputs = lib.optionals stdenv.hostPlatform.isDarwin ( - with darwin.apple_sdk.frameworks; - [ - Accelerate - AudioToolbox - CoreVideo - CoreGraphics - ] - ); - build-system = [ setuptools ]; dependencies = [ numpy ]; @@ -49,10 +39,16 @@ buildPythonPackage rec { pythonImportsCheck = [ "aubio" ]; + disabledTests = [ + # https://github.com/aubio/aubio/issues/413 + "test_assign_cvec_phas_slice" + ]; + meta = with lib; { description = "Library for audio and music analysis"; homepage = "https://aubio.org"; - license = licenses.gpl3; + changelog = "https://github.com/aubio/aubio/blob/${version}/ChangeLog"; + license = licenses.gpl3Plus; maintainers = [ ]; }; }