depot/third_party/nixpkgs/pkgs/development/python-modules/mir_eval/default.nix
Default email 9c6ee729d6 Project import generated by Copybara.
GitOrigin-RevId: 6cee3b5893090b0f5f0a06b4cf42ca4e60e5d222
2023-07-15 19:15:38 +02:00

39 lines
669 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, future
, six
, numpy
, scipy
, matplotlib
}:
buildPythonPackage rec {
pname = "mir_eval";
version = "0.7";
format = "setuptools";
src = fetchPypi {
inherit pname 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 ];
};
}