My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/parsley/default.nix

22 lines
640 B

{ 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 ];
};
}