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

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

  src = fetchPypi {
    inherit pname version;
    sha256 = "1n8msk71lpl3kv086xr2sv68ppgz6228575xfnbszc6p1mwr64rg";
  };

  doCheck = false;  # weird error

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

}