summary refs log tree commit diff
path: root/pkgs/development/python-modules/click-log/default.nix
blob: 7229488a700fca8399ff0aa2ab4cc2f33e6054a1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ stdenv, buildPythonPackage, fetchPypi, click }:

buildPythonPackage rec {
  pname = "click-log";
  version = "0.2.1";

  src = fetchPypi {
    inherit pname version;
    sha256 = "1r1x85023cslb2pwldd089jjk573mk3w78cnashs77wrx7yz8fj9";
  };

  propagatedBuildInputs = [ click ];

  meta = with stdenv.lib; {
    homepage = https://github.com/click-contrib/click-log/;
    description = "Logging integration for Click";
    license = licenses.mit;
    maintainers = with maintainers; [ ];
  };
}