python314Packages.pyvlx: migrate to finalAttrs

This commit is contained in:
Fabian Affolter
2026-01-27 12:23:13 +01:00
committed by GitHub
parent b48142c7f3
commit bd32c1eb05
@@ -9,7 +9,7 @@
zeroconf,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "pyvlx";
version = "0.2.28";
pyproject = true;
@@ -17,7 +17,7 @@ buildPythonPackage rec {
src = fetchFromGitHub {
owner = "Julius2342";
repo = "pyvlx";
tag = version;
tag = finalAttrs.version;
hash = "sha256-l+Yfp8s6x+l/1ssL0wgyzd8QbA4ikr+ZUVMdTEaIjYE=";
};
@@ -40,8 +40,8 @@ buildPythonPackage rec {
devices, e.g. Velux Windows.
'';
homepage = "https://github.com/Julius2342/pyvlx";
changelog = "https://github.com/Julius2342/pyvlx/releases/tag/${src.tag}";
changelog = "https://github.com/Julius2342/pyvlx/releases/tag/${finalAttrs.src.tag}";
license = lib.licenses.lgpl2Only;
maintainers = with lib.maintainers; [ fab ];
};
}
})