Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / python-ly / default.nix
blobb1aa0c68b209074e220c19707de7e38097efc8f3
1 { buildPythonPackage, fetchPypi, lib }:
3 buildPythonPackage rec {
4   pname = "python-ly";
5   version = "0.9.7";
6   format = "setuptools";
8   src = fetchPypi {
9     inherit pname version;
10     sha256 = "d4d2b68eb0ef8073200154247cc9bd91ed7fb2671ac966ef3d2853281c15d7a8";
11   };
13   # tests not shipped on `pypi` and
14   # seem to be broken ATM: https://github.com/wbsoft/python-ly/issues/70
15   doCheck = false;
17   meta = with lib; {
18     description = "Tool and library for manipulating LilyPond files";
19     license = licenses.gpl2;
20     maintainers = with maintainers; [ ];
21   };