1 { lib, buildPythonPackage, fetchFromGitHub, isPy36, flake8, click, pyyaml, six, pytestCheckHook, pytestcov }:
3 buildPythonPackage rec {
7 src = fetchFromGitHub {
9 repo = "python-clickclick";
11 sha256 = "1rij9ws9nhsmagiy1vclzliiqfkxi006rf65qvrw1k3sm2s8p5g0";
14 checkInputs = [ pytestCheckHook pytestcov ];
15 propagatedBuildInputs = [ flake8 click pyyaml six ];
17 # test_cli asserts on exact quoting style of output
20 ] ++ lib.optionals isPy36 [
25 description = "Click command line utilities";
26 homepage = "https://github.com/hjacobs/python-clickclick/";
27 license = licenses.asl20;
28 maintainers = with maintainers; [ elohmeier ];