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