home-assistant-custom-components.systemair: 0.2.0 -> 1.0.11

Switch to active fork by AN3Orik since original repository is stale.
This commit is contained in:
Nikita Uvarov
2025-10-22 11:41:06 +02:00
parent eed14b5137
commit 946d26158a
@@ -1,25 +1,39 @@
{
lib,
pymodbus,
buildHomeAssistantComponent,
fetchFromGitHub,
async-timeout,
aiohttp,
}:
buildHomeAssistantComponent rec {
owner = "tesharp";
owner = "AN3Orik";
domain = "systemair";
version = "0.2.0";
version = "1.0.11";
src = fetchFromGitHub {
inherit owner;
repo = "systemair";
tag = "v${version}";
hash = "sha256-lzFnKPkBOt2fkVGWCj1M/skSr8V39GgDHS+0HD4ACAw=";
hash = "sha256-/M9ErhtggyaY8ZZyhdPSoVCGqrhAQ9/RMRyl34Ks3mc=";
};
postPatch = ''
substituteInPlace custom_components/systemair/manifest.json \
--replace-fail "pymodbus==" "pymodbus>=" \
'';
dependencies = [
pymodbus
async-timeout
aiohttp
];
meta = with lib; {
changelog = "https://github.com/tesharp/systemair/releases/tag/v${version}";
description = "Home Assistant component for Systemair SAVE Connect 2";
homepage = "https://github.com/tesharp/systemair";
changelog = "https://github.com/AN3Orik/systemair/releases/tag/v${version}";
description = "Home Assistant component for Systemair SAVE ventilation units";
homepage = "https://github.com/AN3Orik/systemair";
maintainers = with maintainers; [ uvnikita ];
license = licenses.mit;
};