12 buildPythonPackage rec {
15 format = "setuptools";
17 disabled = pythonOlder "3.7";
20 inherit pname version;
21 hash = "sha256-ySsmHHu34TAEkw8/tLPtrY3i0fEplNzdvgW8IZkEQ8U=";
24 nativeBuildInputs = [ setuptools-scm ];
26 propagatedBuildInputs = [ click ] ++ lib.optionals (pythonOlder "3.8") [ typing-extensions ];
28 nativeCheckInputs = [ pytestCheckHook ];
30 pythonImportsCheck = [ "cloup" ];
33 homepage = "https://github.com/janLuke/cloup";
34 description = "Click extended with option groups, constraints, aliases, help themes";
35 changelog = "https://github.com/janluke/cloup/releases/tag/v${version}";
37 Enriches Click with option groups, constraints, command aliases, help sections for subcommands, themes for --help and other stuff.
39 license = licenses.bsd3;