evcc: 0.131.8 -> 0.131.10 (#364658)
[NixPkgs.git] / pkgs / development / python-modules / mung / default.nix
blob236ab3aba46c13954d28bb5b857e4fc536266935
2   lib,
3   buildPythonPackage,
4   fetchFromGitHub,
5   setuptools,
6   lxml,
7   numpy,
8   pytestCheckHook,
9   scikit-image,
11 let
12   version = "1.2.1";
14 buildPythonPackage {
15   pname = "mung";
16   inherit version;
17   pyproject = true;
19   src = fetchFromGitHub {
20     owner = "OMR-Research";
21     repo = "mung";
22     rev = "refs/tags/${version}";
23     hash = "sha256-QljGoZdUJRClQ/QzUsCKD0/ooWaFrKXI+93WFPvmIjE=";
24   };
26   nativeBuildInputs = [ setuptools ];
28   propagatedBuildInputs = [
29     lxml
30     numpy
31     scikit-image
32   ];
34   nativeCheckInputs = [ pytestCheckHook ];
36   pythonImportsCheck = [ "mung" ];
38   meta = with lib; {
39     description = "Music Notation Graph: a data model for optical music recognition";
40     homepage = "https://github.com/OMR-Research/mung";
41     changelog = "https://github.com/OMR-Research/mung/blob/${version}/CHANGES.md";
42     license = licenses.mit;
43     maintainers = with maintainers; [ piegames ];
44   };