9 buildPythonPackage rec {
10 pname = "click-command-tree";
12 format = "setuptools";
14 src = fetchFromGitHub {
17 rev = "refs/tags/${version}";
18 hash = "sha256-oshAHCGe8p5BQ0W21bXSxrTCEFgIxZ6BmUEiWB1xAoI=";
21 propagatedBuildInputs = [ click ];
23 nativeCheckInputs = [ pytestCheckHook ];
25 pytestFlagsArray = [ "tests.py" ];
27 pythonImportsCheck = [ "click_command_tree" ];
30 description = "click plugin to show the command tree of your CLI";
31 homepage = "https://github.com/whwright/click-command-tree";
32 license = licenses.mit;
33 maintainers = with maintainers; [ tjni ];