python3Packages.mir_eval: init at 0.7

This commit is contained in:
Carl Thomé 2023-05-16 23:35:01 +02:00
parent 3f43324c55
commit d4e59e7f4a
2 changed files with 41 additions and 0 deletions

View file

@ -0,0 +1,39 @@
{ 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 ];
};
}

View file

@ -6160,6 +6160,8 @@ self: super: with self; {
mip = callPackage ../development/python-modules/mip { };
mir_eval = callPackage ../development/python-modules/mir_eval { };
misaka = callPackage ../development/python-modules/misaka { };
misoc = callPackage ../development/python-modules/misoc { };