nixpkgs/pkgs/development/python-modules/click-log/default.nix
Frederik Rietdijk e6bf9c8a45 Revert "python: click-log: 0.2.1 -> 0.3.2"
This broke `vdirsyncer`, the only user of this package.

This reverts commit 60ab4bd851.
2018-06-25 09:12:24 +02:00

21 lines
496 B
Nix

{ 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; [ ];
};
}