Commit ed68fa60 authored by piegames's avatar piegames
Browse files

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

parent f9713de0
Loading
Loading
Loading
Loading
+48 −0
Original line number Diff line number Diff line
{ 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 −0
Original line number Diff line number Diff line
@@ -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 { };