1{ lib, fetchPypi, buildPythonPackage
2, click, pytestCheckHook
3}:
4
5buildPythonPackage rec {
6 pname = "click-help-colors";
7 version = "0.9.1";
8
9 src = fetchPypi {
10 inherit pname version;
11 sha256 = "78cbcf30cfa81c5fc2a52f49220121e1a8190cd19197d9245997605d3405824d";
12 };
13
14 propagatedBuildInputs = [ click ];
15
16 checkInputs = [ pytestCheckHook ];
17
18 pythonImportsCheck = [ "click_help_colors" ];
19
20 meta = with lib; {
21 description = "Colorization of help messages in Click";
22 homepage = "https://github.com/r-m-n/click-help-colors";
23 license = licenses.mit;
24 platforms = platforms.unix;
25 maintainers = with maintainers; [ freezeboy ];
26 };
27}