24 buildPythonPackage rec {
29 src = fetchFromGitHub {
32 rev = "refs/tags/${version}";
33 hash = "sha256-xAsUNhVQBjtSFHyjjnicAKRC3+Tdn3AdGDUYhmOOIdA=";
37 substituteInPlace pyproject.toml --replace \
38 'crashtest = { version = "^0.3.0", python = "^3.6" }' \
39 'crashtest = { version = "*", python = "^3.6" }'
46 propagatedBuildInputs = [
50 ++ lib.optionals (pythonAtLeast "3.6") [ crashtest ]
51 ++ lib.optionals isPy27 [ typing enum34 ];
58 pythonImportsCheck = [
63 homepage = "https://github.com/sdispater/clikit";
64 description = "A group of utilities to build beautiful and testable command line interfaces";
65 license = licenses.mit;
66 maintainers = with maintainers; [ jakewaksbaum ];