linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / clickclick / default.nix
blobd829f43dc0d1d3b4273fa21dedb33de2f97a122f
1 { lib, buildPythonPackage, fetchFromGitHub, isPy36, flake8, click, pyyaml, six, pytestCheckHook, pytestcov }:
3 buildPythonPackage rec {
4   pname = "clickclick";
5   version = "1.2.2";
7   src = fetchFromGitHub {
8     owner = "hjacobs";
9     repo = "python-clickclick";
10     rev = version;
11     sha256 = "1rij9ws9nhsmagiy1vclzliiqfkxi006rf65qvrw1k3sm2s8p5g0";
12   };
14   checkInputs = [ pytestCheckHook pytestcov ];
15   propagatedBuildInputs = [ flake8 click pyyaml six ];
17   # test_cli asserts on exact quoting style of output
18   disabledTests = [
19     "test_cli"
20   ] ++ lib.optionals isPy36 [
21     "test_choice_default"
22   ];
24   meta = with lib; {
25     description = "Click command line utilities";
26     homepage = "https://github.com/hjacobs/python-clickclick/";
27     license = licenses.asl20;
28     maintainers = with maintainers; [ elohmeier ];
29   };