home-assistant-custom-components.entity-notes: init at 3.3.4

This commit is contained in:
Sandro Jäckel
2026-05-14 22:13:59 +02:00
parent 33598be40f
commit ec45f1b5dc
@@ -0,0 +1,31 @@
{
lib,
buildHomeAssistantComponent,
fetchFromGitHub,
voluptuous,
}:
buildHomeAssistantComponent rec {
owner = "martindell";
domain = "entity_notes";
version = "3.3.4";
src = fetchFromGitHub {
inherit owner;
repo = "ha-entity-notes";
tag = "v${version}";
hash = "sha256-5JKZ/KC2sSDQQeg3taLyuZdF6QJHdc7pJ1jaFD9S3kc=";
};
dependencies = [
voluptuous
];
meta = {
description = "Home Assistant custom component for adding notes to entities";
homepage = "https://github.com/martindell/ha-entity-notes";
changelog = "https://github.com/martindell/ha-entity-notes/releases/tag/${src.tag}";
maintainers = with lib.maintainers; [ SuperSandro2000 ];
license = lib.licenses.mit;
};
}