Merge pull request #232680 from fabaff/cloup-bump

python311Packages.cloup: 2.0.0.post1 -> 2.1.0
This commit is contained in:
Jonas Heinrich 2023-05-19 10:36:05 +02:00 committed by GitHub
commit 5617e325ea
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -9,13 +9,14 @@
buildPythonPackage rec {
pname = "cloup";
version = "2.0.0.post1";
version = "2.1.0";
format = "setuptools";
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
hash = "sha256-FDDJB1Bi4Jy2TNhKt6/l1azSit9WHWqzEJ6xl1u9e2s=";
hash = "sha256-3ULHyc1JP63FOkI2+WF4o/EYu72UWn+K2vzVA02CaXE=";
};
nativeBuildInputs = [
@ -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.
'';