home-assistant-custom-components.elegoo_printer: init at 2.3.5

This commit is contained in:
Alexis Williams
2025-10-27 17:12:51 -07:00
parent 337fe8e9d1
commit c949fa8b95
@@ -0,0 +1,52 @@
{
lib,
fetchFromGitHub,
buildHomeAssistantComponent,
# dependencies
colorlog,
loguru,
websocket-client,
websockets,
# tests
pytestCheckHook,
aiohttp,
home-assistant,
}:
buildHomeAssistantComponent rec {
owner = "danielcherubini";
domain = "elegoo_printer";
version = "2.3.5";
src = fetchFromGitHub {
owner = "danielcherubini";
repo = "elegoo-homeassistant";
tag = "v${version}";
hash = "sha256-Ekt19lfn0DdedMFhJDDUkqsv7vjS96+lAhWveag6EeE=";
};
dependencies = [
colorlog
loguru
websocket-client
websockets
];
nativeCheckInputs = [
pytestCheckHook
aiohttp
home-assistant
];
meta = with lib; {
changelog = "https://github.com/danielcherubini/elegoo-homeassistant/releases/tag/v${version}";
description = "Home Assistant integration for Elegoo 3D printers using the SDCP protocol";
homepage = "https://github.com/danielcherubini/elegoo-homeassistant";
license = licenses.mit;
maintainers = with maintainers; [
typedrat
];
};
}