35 lines
641 B
Nix
35 lines
641 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
setuptools,
|
|
click,
|
|
}:
|
|
|
|
buildPythonPackage (finalAttrs: {
|
|
pname = "click-log";
|
|
version = "0.4.0";
|
|
pyproject = true;
|
|
|
|
__structuredAttrs = true;
|
|
|
|
src = fetchPypi {
|
|
pname = "click-log";
|
|
inherit (finalAttrs) version;
|
|
hash = "sha256-OXD4VwrFRJEje82z2KtePu9sBX3yn4w9EVGlGpwjuXU=";
|
|
};
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
dependencies = [ click ];
|
|
|
|
pythonImportsCheck = [ "click_log" ];
|
|
|
|
meta = {
|
|
homepage = "https://github.com/click-contrib/click-log/";
|
|
description = "Logging integration for Click";
|
|
license = lib.licenses.mit;
|
|
maintainers = [ ];
|
|
};
|
|
})
|