depot/third_party/nixpkgs/pkgs/development/python-modules/simpleparse/default.nix
Default email ae91cbe6cc Project import generated by Copybara.
GitOrigin-RevId: 536fe36e23ab0fc8b7f35c24603422eee9fc17a2
2021-02-05 18:12:51 +01:00

27 lines
510 B
Nix

{ lib
, 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;
};
}