nixpkgs/pkgs/development/python-modules/python-ly/default.nix
Maximilian Bosch 3d085a399c
python3Packages.python-ly: remove myself from maintainer list
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.
2020-01-26 19:52:14 +01:00

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; [ ];
};
}