1{ lib, buildPythonPackage, fetchPypi, click }:
2
3buildPythonPackage rec {
4 pname = "click-log";
5 version = "0.4.0";
6
7 src = fetchPypi {
8 inherit pname version;
9 hash = "sha256-OXD4VwrFRJEje82z2KtePu9sBX3yn4w9EVGlGpwjuXU=";
10 };
11
12 propagatedBuildInputs = [ click ];
13
14 meta = with lib; {
15 homepage = "https://github.com/click-contrib/click-log/";
16 description = "Logging integration for Click";
17 license = licenses.mit;
18 maintainers = with maintainers; [ ];
19 };
20}