summary refs log tree commit diff
path: root/pkgs/development/python-modules/python-ly/default.nix
blob: cc38553a817663b4a4a445cb6e7d99d12c22c308 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ buildPythonPackage, fetchPypi, lib }:

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 lib; {
    description = "Tool and library for manipulating LilyPond files";
    license = licenses.gpl2;
    maintainers = with maintainers; [ ];
  };
}