summary refs log tree commit diff
path: root/pkgs/development/python-modules/simpleparse/default.nix
blob: 339f6d1debd7c6ae4c8f037db6c476f17589be2a (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
{ stdenv
, buildPythonPackage
, fetchPypi
, isPy3k
, isPyPy
}:

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

  src = fetchPypi {
    pname = "SimpleParse";
    inherit version;
    sha256 = "18ccdc249bb550717af796af04a7d50aef523368901f64036a48eee5daca149d";
  };

  doCheck = false;  # weird error

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

}