nixpkgs/pkgs/development/python-modules/simpleparse/default.nix

28 lines
530 B
Nix
Raw Normal View History

{ stdenv
, buildPythonPackage
, fetchPypi
, isPy3k
, isPyPy
}:
buildPythonPackage rec {
2018-11-04 10:35:17 +00:00
version = "2.2.0";
pname = "simpleparse";
disabled = isPy3k || isPyPy;
src = fetchPypi {
2019-03-19 14:56:03 +00:00
pname = "SimpleParse";
inherit version;
2018-11-04 10:35:17 +00:00
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;
};
}