update hass components

This commit is contained in:
mjallen18
2025-07-15 15:28:05 -05:00
parent 9587efe719
commit 0fcb6e07f7
25 changed files with 430 additions and 523 deletions

View File

@@ -0,0 +1,31 @@
{ pkgs, ... }:
let
ha-bambulab = pkgs.buildHomeAssistantComponent rec {
owner = "greghesp";
domain = "bambu_lab";
version = "v2.1.27";
src = pkgs.fetchFromGitHub {
owner = owner;
repo = "ha-bambulab";
rev = version;
hash = "sha256-zHPXPYsHrJXOnSqllZqDrxGZDDqyXllC3XEGZRJil0Q=";
};
propagatedBuildInputs = with pkgs.python3Packages; [
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 = [ ];
};
};
in
{
services.home-assistant.customComponents = [
ha-bambulab
];
}