home-assistant-custom-components.plant: init at 2026.2.1

This commit is contained in:
Sandro Jäckel
2026-03-17 20:15:06 +01:00
parent b15d753ca3
commit 4bf1c34fac
@@ -0,0 +1,38 @@
{
lib,
async-timeout,
buildHomeAssistantComponent,
fetchFromGitHub,
pytest-homeassistant-custom-component,
pytestCheckHook,
}:
buildHomeAssistantComponent rec {
owner = "olen";
domain = "plant";
version = "2026.2.1";
src = fetchFromGitHub {
inherit owner;
repo = "homeassistant-plant";
tag = "v${version}";
hash = "sha256-nWZFywMTw3seEAERekzMeLRPceqMl1s7VXujNz0+6zI=";
};
dependencies = [
async-timeout
];
nativeCheckInputs = [
pytest-homeassistant-custom-component
pytestCheckHook
];
meta = {
description = "Alternative Plant component of home assistant";
homepage = "https://github.com/Olen/homeassistant-plant";
changelog = "https://github.com/Olen/homeassistant-plant/releases/tag/${src.tag}";
maintainers = with lib.maintainers; [ SuperSandro2000 ];
license = lib.licenses.mit;
};
}