python3Packages.aubio: init at 0.4.9

gstqt5
Martin Weinelt 2020-10-17 22:47:05 +02:00 committed by Jon
parent 73eea3d98d
commit 5304f52bc7
2 changed files with 37 additions and 0 deletions

View File

@ -0,0 +1,35 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, numpy
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "aubio";
version = "0.4.9";
src = fetchFromGitHub {
owner = pname;
repo = pname;
rev = version;
sha256 = "0fhxikvlr010nbh02g455d5y8bq6j5yw180cdh4gsd0hb43y3z26";
};
propagatedBuildInputs = [
numpy
];
checkInputs = [
pytestCheckHook
];
pythonImportsCheck = [ "aubio" ];
meta = with lib; {
description = "a library for audio and music analysis";
homepage = "https://aubio.org";
licenses = license.gpl3;
maintainers = with maintainers; [ hexa ];
};
}

View File

@ -452,6 +452,8 @@ in {
attrs = callPackage ../development/python-modules/attrs { };
aubio = callPackage ../development/python-modules/aubio { };
audio-metadata = callPackage ../development/python-modules/audio-metadata { };
audioread = callPackage ../development/python-modules/audioread { };