home-assistant-custom-components.battery_notes: init at 3.3.0 (#488436)

This commit is contained in:
dotlambda
2026-02-09 18:37:00 +00:00
committed by GitHub
@@ -0,0 +1,29 @@
{
lib,
buildHomeAssistantComponent,
fetchFromGitHub,
}:
buildHomeAssistantComponent rec {
owner = "andrew-codechimp";
domain = "battery_notes";
version = "3.3.0";
src = fetchFromGitHub {
inherit owner;
repo = "HA-Battery-Notes";
tag = version;
hash = "sha256-WOSWiWojT0pUhKvnl7qGvk6IHjENOy1rr0SFpTaQ0yI=";
};
# has no tests
doCheck = false;
meta = {
description = "Home Assistant integration to provide battery details of devices";
homepage = "https://github.com/andrew-codechimp/HA-Battery-Notes";
changelog = "https://github.com/andrew-codechimp/HA-Battery-Notes/releases/tag/${src.tag}";
maintainers = with lib.maintainers; [ SuperSandro2000 ];
license = lib.licenses.mit;
};
}