python3Packages.logboth: migrate to finalAttrs

This commit is contained in:
Fabian Affolter
2026-02-28 09:54:37 +01:00
committed by GitHub
parent 0c092edd20
commit 8c17fc4f2c
@@ -5,7 +5,7 @@
setuptools,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "logboth";
version = "0.2.0";
pyproject = true;
@@ -13,7 +13,7 @@ buildPythonPackage rec {
src = fetchFromGitLab {
owner = "zehkira";
repo = "logboth";
tag = "v${version}";
tag = "v${finalAttrs.version}";
hash = "sha256-R4FrZK8yxCZ5BFBFp/Fj/WyWa6+rIM6GHl3HZGgp5TI=";
};
@@ -35,4 +35,4 @@ buildPythonPackage rec {
license = lib.licenses.bsd0;
maintainers = with lib.maintainers; [ aleksana ];
};
}
})