home-assistant-custom-components.plant: init at 2026.2.1
This commit is contained in:
@@ -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;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user