1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5 click,
6 pytest,
7}:
8
9buildPythonPackage rec {
10 pname = "click-plugins";
11 version = "1.1.1";
12 format = "setuptools";
13
14 src = fetchPypi {
15 inherit pname version;
16 sha256 = "46ab999744a9d831159c3411bb0c79346d94a444df9a3a3742e9ed63645f264b";
17 };
18
19 propagatedBuildInputs = [ click ];
20
21 nativeCheckInputs = [ pytest ];
22
23 meta = with lib; {
24 description = "Extension module for click to enable registering CLI commands";
25 homepage = "https://github.com/click-contrib/click-plugins";
26 license = licenses.bsd3;
27 maintainers = with maintainers; [ knedlsepp ];
28 };
29}