Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / parsley / default.nix
blob17e05b6027f25d5dff2ae4001f446d32dddb17b1
1 { buildPythonPackage
2 , fetchPypi
3 , lib
4 }:
6 buildPythonPackage rec {
7   pname = "Parsley";
8   version = "1.3";
9   src = fetchPypi {
10     inherit pname version;
11     sha256 = "0hcd41bl07a8sx7nmx12p16xprnblc4phxkawwmmy78n8y6jfi4l";
12   };
13   # Tests fail although the package works just fine.  Unfortunately
14   # the tests as run by the upstream CI server travis.org are broken.
15   doCheck = false;
16   meta = with lib; {
17     license = licenses.mit;
18     homepage = "https://launchpad.net/parsley";
19     description = "A parser generator library based on OMeta, and other useful parsing tools.";
20     maintainers = with maintainers; [ seppeljordan ];
21   };