clickgen: use finalAttrs

This commit is contained in:
Sigmanificient
2026-05-16 03:36:33 +02:00
parent 2bf8e5b7e4
commit 09745cf3e9
@@ -13,7 +13,7 @@
pytestCheckHook,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "clickgen";
version = "2.2.5";
pyproject = true;
@@ -21,7 +21,7 @@ buildPythonPackage rec {
src = fetchFromGitHub {
owner = "ful1e5";
repo = "clickgen";
tag = "v${version}";
tag = "v${finalAttrs.version}";
hash = "sha256-yFEkE1VyeHBuebpsumc6CTvv2kpAw7XAWlyUlXibqz0=";
};
@@ -57,4 +57,4 @@ buildPythonPackage rec {
# ld: unknown option: -zdefs
broken = stdenv.hostPlatform.isDarwin;
};
}
})