1{ buildPythonPackage, fetchPypi, lib }:
2
3buildPythonPackage rec {
4 pname = "python-ly";
5 version = "0.9.7";
6
7 src = fetchPypi {
8 inherit pname version;
9 sha256 = "d4d2b68eb0ef8073200154247cc9bd91ed7fb2671ac966ef3d2853281c15d7a8";
10 };
11
12 # tests not shipped on `pypi` and
13 # seem to be broken ATM: https://github.com/wbsoft/python-ly/issues/70
14 doCheck = false;
15
16 meta = with lib; {
17 description = "Tool and library for manipulating LilyPond files";
18 license = licenses.gpl2;
19 maintainers = with maintainers; [ ];
20 };
21}