ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / click-plugins / default.nix
blob31ae00a348df9a1d73fe8bc3eb440d14807a224d
1 { lib, buildPythonPackage, fetchPypi,
2   click, pytest
3 }:
5 buildPythonPackage rec {
6   pname = "click-plugins";
7   version = "1.1.1";
9   src = fetchPypi {
10     inherit pname version;
11     sha256 = "46ab999744a9d831159c3411bb0c79346d94a444df9a3a3742e9ed63645f264b";
12   };
14   propagatedBuildInputs = [
15     click
16   ];
18   checkInputs = [
19     pytest
20   ];
22   meta = with lib; {
23     description = "An extension module for click to enable registering CLI commands";
24     homepage = "https://github.com/click-contrib/click-plugins";
25     license = licenses.bsd3;
26     maintainers = with maintainers; [ knedlsepp ];
27   };