10 buildPythonPackage rec {
12 version = "2.4.7.1.2.0";
13 format = "setuptools";
15 disabled = pythonOlder "3.7";
17 src = fetchFromGitHub {
20 rev = "refs/tags/v${version}";
21 hash = "sha256-cb0Lx+S9WnPa9veHJaYEU7pFCtB6pG/GKf4HK/UbmtU=";
24 nativeBuildInputs = [ cython ];
26 checkInputs = [ pexpect ];
29 ${python.interpreter} tests/cPyparsing_test.py
32 pythonImportsCheck = [
37 description = "Cython PyParsing implementation";
38 homepage = "https://github.com/evhub/cpyparsing";
39 license = licenses.asl20;
40 maintainers = with maintainers; [ fabianhjr ];