pythonPackages.click-log: Move to own file
This commit is contained in:
committed by
Frederik Rietdijk
parent
54c4b04085
commit
0ac0cf46ec
20
pkgs/development/python-modules/click-log/default.nix
Normal file
20
pkgs/development/python-modules/click-log/default.nix
Normal file
@@ -0,0 +1,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; [ ];
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user