Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / click-log / default.nix
blob0b3622b9dc9837e9eb8e1b7cd6c4118397cca279
1 { lib, buildPythonPackage, fetchPypi, click }:
3 buildPythonPackage rec {
4   pname = "click-log";
5   version = "0.4.0";
6   format = "setuptools";
8   src = fetchPypi {
9     inherit pname version;
10     hash = "sha256-OXD4VwrFRJEje82z2KtePu9sBX3yn4w9EVGlGpwjuXU=";
11   };
13   propagatedBuildInputs = [ click ];
15   meta = with lib; {
16     homepage = "https://github.com/click-contrib/click-log/";
17     description = "Logging integration for Click";
18     license = licenses.mit;
19     maintainers = with maintainers; [ ];
20   };