8 buildPythonPackage rec {
9 pname = "gitlike-commands";
13 disabled = pythonOlder "3.9";
15 src = fetchFromGitHub {
17 repo = "gitlike-commands";
18 rev = "refs/tags/v${version}";
19 hash = "sha256-Z0l8nCKov1iMJvI3YTHvg0ey+oPju3rgaKtmk6OX44g=";
26 # Module has no real tests
29 pythonImportsCheck = [
34 description = "Easy python module for creating git-style subcommand handling";
35 homepage = "https://github.com/unixorn/gitlike-commands";
36 changelog = "https://github.com/unixorn/gitlike-commands/releases/tag/v${version}";
37 license = licenses.asl20;
38 maintainers = with maintainers; [ fab ];