python311Packages.cpyparsing: add changelog to meta

This commit is contained in:
Fabian Affolter 2023-05-14 10:44:31 +02:00 committed by GitHub
parent fa489eec7e
commit 04810cc58d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -21,9 +21,13 @@ buildPythonPackage rec {
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 ];
};