python3Packages.pywinbox: use finalAttrs

This commit is contained in:
Sigmanificient
2026-01-07 02:20:05 +01:00
parent fc00559d57
commit 5b8e08b66b
@@ -12,7 +12,7 @@
pyobjc-framework-Cocoa,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "pywinbox";
version = "0.7";
pyproject = true;
@@ -20,7 +20,7 @@ buildPythonPackage rec {
src = fetchFromGitHub {
owner = "Kalmat";
repo = "PyWinBox";
rev = "refs/tags/v${version}";
tag = "refs/tags/v${finalAttrs.version}";
hash = "sha256-Z/gedrIFNpQvzRWqGxMEl5MoEIo9znZz/FZLMVl0Eb4=";
};
@@ -46,4 +46,4 @@ buildPythonPackage rec {
description = "Cross-Platform and multi-monitor toolkit to handle rectangular areas and windows box";
maintainers = with lib.maintainers; [ sigmanificient ];
};
}
})