Files
nix-config/packages/homeassistant/ha-bambulab/default.nix
mjallen18 add39956f7 hass
2026-03-27 18:32:24 -05:00

30 lines
683 B
Nix

{
buildHomeAssistantComponent,
fetchFromGitHub,
home-assistant,
...
}:
buildHomeAssistantComponent rec {
owner = "greghesp";
domain = "bambu_lab";
version = "v2.2.21";
src = fetchFromGitHub {
owner = owner;
repo = "ha-bambulab";
tag = version;
hash = "sha256-56aAJAsmn+PzLZijFQ9DbTfHSrbeNk+OM/ibu32UHtg=";
};
nativeBuildInputs = with home-assistant.python.pkgs; [
beautifulsoup4
];
meta = {
changelog = "https://github.com/greghesp/ha-bambulab/releases/tag/${version}";
description = "A Home Assistant Integration for Bambu Lab printers.";
homepage = "https://github.com/greghesp/ha-bambulab";
maintainers = [ ];
};
}