home-assistant-custom-components.mypyllant: init at 0.9.9

This commit is contained in:
Matej Urbas
2025-12-07 07:47:35 +00:00
parent 75c24d4ef0
commit c3d3b88b07
@@ -0,0 +1,52 @@
{
buildHomeAssistantComponent,
fetchFromGitHub,
lib,
# dependencies
mypyllant,
voluptuous,
# tests
aioresponses,
polyfactory,
pytest-cov-stub,
pytest-homeassistant-custom-component,
pytest-xdist,
pytestCheckHook,
}:
buildHomeAssistantComponent rec {
owner = "signalkraft";
domain = "mypyllant";
version = "0.9.9";
src = fetchFromGitHub {
owner = "signalkraft";
repo = "mypyllant-component";
tag = "v${version}";
hash = "sha256-6T8SGAP2535VqZmvSeITpMIa0SBJhnWsOKM1Y66WhHE=";
};
dependencies = [
mypyllant
voluptuous
];
nativeCheckInputs = [
aioresponses
polyfactory
pytest-cov-stub
pytest-homeassistant-custom-component
pytest-xdist
pytestCheckHook
];
meta = {
description = "Unofficial Home Assistant integration for interacting with myVAILLANT";
changelog = "https://github.com/signalkraft/mypyllant-component/releases/tag/${src.tag}";
homepage = "https://github.com/signalkraft/mypyllant-component";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ urbas ];
};
}