3d085a399c
While going through my repology feed of package-updates I realized that
I'm still a maintainer of this. Just did an update in e6a9c15fa1
and the package is pretty easy to maintain, but decided to make it clear
that I don't actively maintain this.
22 lines
540 B
Nix
22 lines
540 B
Nix
{ buildPythonPackage, fetchPypi, stdenv }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "python-ly";
|
|
version = "0.9.6";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "0s5hvsf17f4w1xszrf4pg29wfv9znkj195klq1v2qhlpxfp6772d";
|
|
};
|
|
|
|
# tests not shipped on `pypi` and
|
|
# seem to be broken ATM: https://github.com/wbsoft/python-ly/issues/70
|
|
doCheck = false;
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Tool and library for manipulating LilyPond files";
|
|
license = licenses.gpl2;
|
|
maintainers = with maintainers; [ ];
|
|
};
|
|
}
|