2021-01-11 07:54:33 +00:00
|
|
|
{ buildPythonPackage, fetchPypi, lib, stdenv }:
|
2018-03-31 16:01:39 +01:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "python-ly";
|
2020-01-26 18:49:57 +00:00
|
|
|
version = "0.9.6";
|
2018-03-31 16:01:39 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-01-26 18:49:57 +00:00
|
|
|
sha256 = "0s5hvsf17f4w1xszrf4pg29wfv9znkj195klq1v2qhlpxfp6772d";
|
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
|
|
|
};
|
|
|
|
}
|