about summary refs log tree commit diff
path: root/pkgs/development/python-modules/parsley/default.nix
blob: 17e05b6027f25d5dff2ae4001f446d32dddb17b1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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 ];
  };
}