python313Packages.incomfort-client: 0.6.11 -> 0.6.12 (#486441)

This commit is contained in:
Fabian Affolter
2026-02-03 08:05:46 +00:00
committed by GitHub
@@ -10,16 +10,16 @@
setuptools,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "incomfort-client";
version = "0.6.11";
version = "0.6.12";
pyproject = true;
src = fetchFromGitHub {
owner = "zxdavb";
repo = "incomfort-client";
tag = "v${version}";
hash = "sha256-HCawa+eFpC0t/dC8fQ+teMaPpuxrYBprEV8SxnhZ1ls=";
tag = "v${finalAttrs.version}";
hash = "sha256-5IP0R7NI+TXBOPwDZ26inVC6YxhYozo4ZM/V7w73EvQ=";
};
build-system = [ poetry-core ];
@@ -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 ];
};
}
})