python313Packages.incomfort-client: migrate to finalAttrs

This commit is contained in:
Fabian Affolter
2026-02-03 09:00:11 +01:00
committed by GitHub
parent bd15f12eea
commit 3f1ea353ba
@@ -10,7 +10,7 @@
setuptools,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "incomfort-client";
version = "0.6.12";
pyproject = true;
@@ -18,7 +18,7 @@ buildPythonPackage rec {
src = fetchFromGitHub {
owner = "zxdavb";
repo = "incomfort-client";
tag = "v${version}";
tag = "v${finalAttrs.version}";
hash = "sha256-5IP0R7NI+TXBOPwDZ26inVC6YxhYozo4ZM/V7w73EvQ=";
};
@@ -37,8 +37,8 @@ buildPythonPackage rec {
meta = {
description = "Python module to poll Intergas boilers via a Lan2RF gateway";
homepage = "https://github.com/zxdavb/incomfort-client";
changelog = "https://github.com/jbouwh/incomfort-client/releases/tag/${src.tag}";
changelog = "https://github.com/jbouwh/incomfort-client/releases/tag/${finalAttrs.src.tag}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ fab ];
};
}
})