nixpkgs/pkgs/development/python-modules/mir-eval/default.nix
2024-01-07 12:07:17 +01:00

41 lines
687 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, future
, six
, numpy
, scipy
, matplotlib
}:
buildPythonPackage rec {
pname = "mir-eval";
version = "0.7";
format = "setuptools";
src = fetchPypi {
pname = "mir_eval";
inherit version;
hash = "sha256-4f66pXZsZadUXCoXCyQUkPR6mJhzcLHgZ0JCTF3r5l4=";
};
propagatedBuildInputs = [
future
six
numpy
scipy
matplotlib
];
pythonImportsCheck = [
"mir_eval"
];
meta = with lib; {
description = "Common metrics for common audio/music processing tasks";
homepage = "https://github.com/craffel/mir_eval";
license = licenses.mit;
maintainers = with maintainers; [ carlthome ];
};
}