ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / cloup / default.nix
blob1ccae736bddbda0e2a30924add7ebf9b829b42b5
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , pytestCheckHook
5 , click
6 , setuptools-scm
7 , pythonOlder
8 }:
10 buildPythonPackage rec {
11   pname = "cloup";
12   version = "1.0.1";
14   disabled = pythonOlder "3.6";
16   src = fetchPypi {
17     inherit pname version;
18     sha256 = "sha256-iQfpz2rl7Y3PJIG2aO+Cu1khx2g68XfOwhkRoENqsTg=";
19   };
21   nativeBuildInputs = [
22     setuptools-scm
23   ];
25   propagatedBuildInputs = [
26     click
27   ];
29   checkInputs = [
30     pytestCheckHook
31   ];
33   pythonImportsCheck = [ "cloup" ];
35   meta = with lib; {
36     homepage = "https://github.com/janLuke/cloup";
37     description = "Click extended with option groups, constraints, aliases, help themes";
38     longDescription = ''
39       Enriches Click with option groups, constraints, command aliases, help sections for subcommands, themes for --help and other stuff.
40     '';
41     license = licenses.bsd3;
42     maintainers = with maintainers; [ friedelino ];
43   };