Skip to content

Commit

Permalink
pythonPackages.python-ly: init at 0.9.5
Browse files Browse the repository at this point in the history
  • Loading branch information
Ma27 committed Mar 31, 2018
1 parent 6f7ded7 commit d50943a
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 0 deletions.
21 changes: 21 additions & 0 deletions pkgs/development/python-modules/python-ly/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,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 ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/python-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2918,6 +2918,8 @@ in {

python-jose = callPackage ../development/python-modules/python-jose {};

python-ly = callPackage ../development/python-modules/python-ly {};

pyhepmc = buildPythonPackage rec {
name = "pyhepmc-${version}";
version = "0.5.0";
Expand Down

0 comments on commit d50943a

Please sign in to comment.