pythonPackages.parsley: init at 1.3
This commit is contained in:
parent
7fc6425d02
commit
d6a2495f1d
2 changed files with 24 additions and 0 deletions
22
pkgs/development/python-modules/parsley/default.nix
Normal file
22
pkgs/development/python-modules/parsley/default.nix
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
{ buildPythonPackage
|
||||||
|
, fetchPypi
|
||||||
|
, lib
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "Parsley";
|
||||||
|
version = "1.3";
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "0hcd41bl07a8sx7nmx12p16xprnblc4phxkawwmmy78n8y6jfi4l";
|
||||||
|
};
|
||||||
|
# Tests fail although the package works just fine. Unfortunately
|
||||||
|
# the tests as run by the upstream CI server travis.org are broken.
|
||||||
|
doCheck = false;
|
||||||
|
meta = with lib; {
|
||||||
|
license = licenses.mit;
|
||||||
|
homepage = "https://launchpad.net/parsley";
|
||||||
|
description = "A parser generator library based on OMeta, and other useful parsing tools.";
|
||||||
|
maintainers = with maintainers; [ seppeljordan ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -834,6 +834,8 @@ in {
|
||||||
|
|
||||||
palettable = callPackage ../development/python-modules/palettable { };
|
palettable = callPackage ../development/python-modules/palettable { };
|
||||||
|
|
||||||
|
parsley = callPackage ../development/python-modules/parsley { };
|
||||||
|
|
||||||
pastel = callPackage ../development/python-modules/pastel { };
|
pastel = callPackage ../development/python-modules/pastel { };
|
||||||
|
|
||||||
pathlib = callPackage ../development/python-modules/pathlib { };
|
pathlib = callPackage ../development/python-modules/pathlib { };
|
||||||
|
|
Loading…
Reference in a new issue