python3Packages.mung: init at unstable-2022-07-10

This commit is contained in:
piegames
2023-05-14 20:54:57 +02:00
parent f9713de024
commit ed68fa60fb
2 changed files with 50 additions and 0 deletions
@@ -0,0 +1,48 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, lxml
, matplotlib
, midiutil
, numpy
, pytestCheckHook
, scikitimage
, scikit-learn
}:
let
rev = "8d0ce91d831b0592c111ddb38fc9aa8eba130ed2";
in
buildPythonPackage {
pname = "mung";
version = "unstable-2022-07-10";
src = fetchFromGitHub {
owner = "OMR-Research";
repo = "mung";
inherit rev;
hash = "sha256-QzCkB9Wj4dTPuMCMweFw6IsSwBBzV0Nfx7+VX7Plnio=";
};
format = "setuptools";
propagatedBuildInputs = [
lxml
numpy
scikitimage
scikit-learn
matplotlib
midiutil
];
nativeCheckInputs = [
pytestCheckHook
];
meta = with lib; {
description = "Music Notation Graph: a data model for optical music recognition";
homepage = "https://github.com/OMR-Research/mung";
changelog = "https://github.com/OMR-Research/mung/blob/${rev}/CHANGES.md";
license = licenses.mit;
maintainers = with maintainers; [ piegames ];
};
}
+2
View File
@@ -6426,6 +6426,8 @@ self: super: with self; {
munch = callPackage ../development/python-modules/munch { };
mung = callPackage ../development/python-modules/mung { };
munkres = callPackage ../development/python-modules/munkres { };
murmurhash = callPackage ../development/python-modules/murmurhash { };