python313Packages.tiered-debug: init at 1.3.0

Python logging helper module that allows for multiple tiers of debug
logging

https://github.com/untergeek/tiered-debug
This commit is contained in:
Fabian Affolter
2025-08-11 23:46:35 +02:00
parent 3fe2211063
commit 798c206c36
2 changed files with 46 additions and 0 deletions
@@ -0,0 +1,44 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
hatchling,
pytestCheckHook,
pytest-cov-stub,
}:
buildPythonPackage rec {
pname = "tiered-debug";
version = "1.3.0";
pyproject = true;
src = fetchFromGitHub {
owner = "untergeek";
repo = "tiered-debug";
tag = "v${version}";
hash = "sha256-2mThiuJUX+N5qIOXpdFOuIa+kBGYzbZzCeaAfEz3Iy0=";
};
build-system = [ hatchling ];
nativeCheckInputs = [
pytest-cov-stub
pytestCheckHook
];
pythonImportsCheck = [ "tiered_debug" ];
disabledTests = [
# AssertionError
"test_add_handler"
"test_log_with_default_stacklevel"
];
meta = {
description = "Python logging helper module that allows for multiple tiers of debug logging";
homepage = "https://github.com/untergeek/tiered-debug";
changelog = "https://github.com/untergeek/tiered-debug/releases/tag/${src.tag}";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ fab ];
};
}
+2
View File
@@ -18047,6 +18047,8 @@ self: super: with self; {
tidylib = callPackage ../development/python-modules/pytidylib { };
tiered-debug = callPackage ../development/python-modules/tiered-debug { };
tifffile = callPackage ../development/python-modules/tifffile { };
tika = callPackage ../development/python-modules/tika { };