11 buildPythonPackage rec {
14 format = "setuptools";
16 disabled = pythonOlder "3.7";
19 inherit pname version;
20 hash = "sha256-zBBZYQ2B2qCMxgflbHroGfqwEPGdGfPIdc7rZ1GDrPY=";
27 propagatedBuildInputs = [
29 ] ++ lib.optionals (pythonOlder "3.8") [
37 pythonImportsCheck = [
42 homepage = "https://github.com/janLuke/cloup";
43 description = "Click extended with option groups, constraints, aliases, help themes";
44 changelog = "https://github.com/janluke/cloup/releases/tag/v${version}";
46 Enriches Click with option groups, constraints, command aliases, help sections for subcommands, themes for --help and other stuff.
48 license = licenses.bsd3;
49 maintainers = with maintainers; [ friedelino ];