1{
2 buildPythonPackage,
3 fetchPypi,
4 lib,
5}:
6
7buildPythonPackage rec {
8 pname = "parsley";
9 version = "1.3";
10 format = "setuptools";
11 src = fetchPypi {
12 pname = "Parsley";
13 inherit version;
14 sha256 = "0hcd41bl07a8sx7nmx12p16xprnblc4phxkawwmmy78n8y6jfi4l";
15 };
16 # Tests fail although the package works just fine. Unfortunately
17 # the tests as run by the upstream CI server travis.org are broken.
18 doCheck = false;
19 meta = with lib; {
20 license = licenses.mit;
21 homepage = "https://launchpad.net/parsley";
22 description = "Parser generator library based on OMeta, and other useful parsing tools";
23 maintainers = with maintainers; [ seppeljordan ];
24 };
25}