2021-01-25 08:26:54 +00:00
|
|
|
{ buildPythonPackage, fetchPypi, lib }:
|
2018-03-31 16:01:39 +01:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "python-ly";
|
2021-02-20 09:09:15 +00:00
|
|
|
version = "0.9.7";
|
2018-03-31 16:01:39 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2021-02-20 09:09:15 +00:00
|
|
|
sha256 = "d4d2b68eb0ef8073200154247cc9bd91ed7fb2671ac966ef3d2853281c15d7a8";
|
2018-03-31 16:01:39 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
# tests not shipped on `pypi` and
|
|
|
|
# seem to be broken ATM: https://github.com/wbsoft/python-ly/issues/70
|
|
|
|
doCheck = false;
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2018-03-31 16:01:39 +01:00
|
|
|
description = "Tool and library for manipulating LilyPond files";
|
|
|
|
license = licenses.gpl2;
|
2020-01-26 18:52:14 +00:00
|
|
|
maintainers = with maintainers; [ ];
|
2018-03-31 16:01:39 +01:00
|
|
|
};
|
|
|
|
}
|