home-assistant-custom-components.fellow: init at 0.3.2 (#429529)

This commit is contained in:
Martin Weinelt 2025-07-31 02:04:33 +02:00 committed by GitHub
commit ac44f39d96
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -0,0 +1,35 @@
{
lib,
buildHomeAssistantComponent,
fetchFromGitHub,
unstableGitUpdater,
requests,
pydantic,
}:
buildHomeAssistantComponent {
owner = "NewsGuyTor";
domain = "fellow";
version = "0.3.2";
src = fetchFromGitHub {
owner = "NewsGuyTor";
repo = "FellowAiden-HomeAssistant";
rev = "2268880c7727b1d2e488dcebbdc5b2675d664ddf";
hash = "sha256-Wg6EFUQNhlK2GQjC90c5lA3b/y40LhXdInba/iTtUWc=";
};
passthru.updateScript = unstableGitUpdater { };
dependencies = [
requests
pydantic
];
meta = {
description = "Home Assistant integration for Fellow Aiden coffee brewer";
homepage = "https://github.com/NewsGuyTor/FellowAiden-HomeAssistant";
license = lib.licenses.gpl3Only;
maintainers = [ lib.maintainers.jamiemagee ];
};
}