python311Packages.cloup: add changelog to meta

This commit is contained in:
Fabian Affolter 2023-05-18 20:25:47 +02:00 committed by GitHub
parent 37c2ebcda6
commit f32672f968
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -10,6 +10,7 @@
buildPythonPackage rec {
pname = "cloup";
version = "2.1.0";
format = "setuptools";
disabled = pythonOlder "3.6";
@ -30,11 +31,14 @@ buildPythonPackage rec {
pytestCheckHook
];
pythonImportsCheck = [ "cloup" ];
pythonImportsCheck = [
"cloup"
];
meta = with lib; {
homepage = "https://github.com/janLuke/cloup";
description = "Click extended with option groups, constraints, aliases, help themes";
changelog = "https://github.com/janluke/cloup/releases/tag/v${version}";
longDescription = ''
Enriches Click with option groups, constraints, command aliases, help sections for subcommands, themes for --help and other stuff.
'';