summary refs log tree commit diff
path: root/pkgs/development/python-modules/simpleparse/default.nix
blob: 6395f4af223d557cef16921e0fa0573f793b8531 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{ lib, stdenv
, buildPythonPackage
, fetchPypi
, isPy3k
, isPyPy
}:

buildPythonPackage rec {
  version = "2.2.2";
  pname = "simpleparse";
  disabled = isPy3k || isPyPy;

  src = fetchPypi {
    pname = "SimpleParse";
    inherit version;
    sha256 = "010szm4mbqgfdksa2n4l9avj617rb0gkwrryc70mfjmyww0bd1m6";
  };

  doCheck = false;  # weird error

  meta = with lib; {
    description = "A Parser Generator for Python";
    homepage = "https://pypi.python.org/pypi/SimpleParse";
    license = licenses.bsd0;
  };

}