python3Packages.verboselogs: modernize

This commit is contained in:
Harinn
2026-07-15 01:48:00 +07:00
parent a23cbeabdd
commit b4c053cbc0

View File

@@ -7,15 +7,17 @@
pytestCheckHook,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "verboselogs";
version = "1.7";
pyproject = true;
__structuredAttrs = true;
src = fetchFromGitHub {
owner = "xolox";
repo = "python-verboselogs";
rev = version;
tag = finalAttrs.version;
hash = "sha256-hcIdbn0gdkdJ33KcOx6uv0iMXW0x+i880SoROi+qX4I=";
};
@@ -39,4 +41,4 @@ buildPythonPackage rec {
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ eyjhb ];
};
}
})