Merge pull request #231798 from r-ryantm/auto-update/python311Packages.cpyparsing

python311Packages.cpyparsing: 2.4.7.1.2.0 -> 2.4.7.1.2.1
This commit is contained in:
Nick Cao
2023-05-14 17:00:43 +08:00
committed by GitHub
@@ -9,7 +9,7 @@
buildPythonPackage rec {
pname = "cpyparsing";
version = "2.4.7.1.2.0";
version = "2.4.7.1.2.1";
format = "setuptools";
disabled = pythonOlder "3.7";
@@ -18,12 +18,16 @@ buildPythonPackage rec {
owner = "evhub";
repo = pname;
rev = "refs/tags/v${version}";
hash = "sha256-cb0Lx+S9WnPa9veHJaYEU7pFCtB6pG/GKf4HK/UbmtU=";
hash = "sha256-HJ0I5DKZ2WV+1pXZCvJHA7Wih3Gkn7vL/ojXnTssKxw=";
};
nativeBuildInputs = [ cython ];
nativeBuildInputs = [
cython
];
nativeCheckInputs = [ pexpect ];
nativeCheckInputs = [
pexpect
];
checkPhase = ''
${python.interpreter} tests/cPyparsing_test.py
@@ -36,6 +40,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "Cython PyParsing implementation";
homepage = "https://github.com/evhub/cpyparsing";
changelog = "https://github.com/evhub/cpyparsing/releases/tag/v${version}";
license = licenses.asl20;
maintainers = with maintainers; [ fabianhjr ];
};