summary refs log tree commit diff
path: root/pkgs/development/python-modules/python-ly/default.nix
blob: 4c1bd05f4a0fa2f920cc60ed3d27324acfb31e40 (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, stdenv }:

buildPythonPackage rec {
  pname = "python-ly";
  version = "0.9.5";

  src = fetchPypi {
    inherit pname version;
    sha256 = "0x98dv7p8mg26p4816yy8hz4f34zf6hpnnfmr56msgh9jnsm2qfl";
  };

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