1{ lib, buildPythonPackage, fetchPypi,
2 click, pytest
3}:
4
5buildPythonPackage rec {
6 pname = "click-plugins";
7 version = "1.1.1";
8
9 src = fetchPypi {
10 inherit pname version;
11 sha256 = "46ab999744a9d831159c3411bb0c79346d94a444df9a3a3742e9ed63645f264b";
12 };
13
14 propagatedBuildInputs = [
15 click
16 ];
17
18 nativeCheckInputs = [
19 pytest
20 ];
21
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 };
28}