python3Packages.click-log: modernize
This commit is contained in:
@@ -6,13 +6,16 @@
|
||||
click,
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
buildPythonPackage (finalAttrs: {
|
||||
pname = "click-log";
|
||||
version = "0.4.0";
|
||||
pyproject = true;
|
||||
|
||||
__structuredAttrs = true;
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
pname = "click-log";
|
||||
inherit (finalAttrs) version;
|
||||
hash = "sha256-OXD4VwrFRJEje82z2KtePu9sBX3yn4w9EVGlGpwjuXU=";
|
||||
};
|
||||
|
||||
@@ -20,10 +23,12 @@ buildPythonPackage rec {
|
||||
|
||||
dependencies = [ click ];
|
||||
|
||||
pythonImportsCheck = [ "click_log" ];
|
||||
|
||||
meta = {
|
||||
homepage = "https://github.com/click-contrib/click-log/";
|
||||
description = "Logging integration for Click";
|
||||
license = lib.licenses.mit;
|
||||
maintainers = [ ];
|
||||
};
|
||||
}
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user