home-assistant-custom-components.mypyllant: 0.9.18 -> 0.9.19

This commit is contained in:
Matej Urbas
2026-07-24 13:26:45 +01:00
parent c8e953f1d8
commit 7f072a5804
@@ -16,16 +16,16 @@
pytestCheckHook,
}:
buildHomeAssistantComponent rec {
buildHomeAssistantComponent (finalAttrs: {
owner = "signalkraft";
domain = "mypyllant";
version = "0.9.18";
version = "0.9.19";
src = fetchFromGitHub {
owner = "signalkraft";
repo = "mypyllant-component";
tag = "v${version}";
hash = "sha256-7huCAslbm5CLzArYMzSGkKPHlQoX6Qc0WLuv7e6OYLQ=";
tag = "v${finalAttrs.version}";
hash = "sha256-7+KHmsgfGPIIWu+TTumswcaEoyQF9KvBVAKNGtNhZuQ=";
};
dependencies = [
@@ -44,9 +44,9 @@ buildHomeAssistantComponent rec {
meta = {
description = "Unofficial Home Assistant integration for interacting with myVAILLANT";
changelog = "https://github.com/signalkraft/mypyllant-component/releases/tag/${src.tag}";
changelog = "https://github.com/signalkraft/mypyllant-component/releases/tag/${finalAttrs.src.tag}";
homepage = "https://github.com/signalkraft/mypyllant-component";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ urbas ];
};
}
})