Files
nix-config/packages/homeassistant/ha-bedjet/default.nix
mjallen18 aed841d32e hass
2026-03-26 11:42:19 -05:00

30 lines
707 B
Nix

{
buildHomeAssistantComponent,
fetchFromGitHub,
home-assistant,
...
}:
buildHomeAssistantComponent rec {
owner = "natekspencer";
domain = "bedjet";
version = "2.0.1";
src = fetchFromGitHub {
owner = owner;
repo = "ha-bedjet";
tag = version;
hash = "sha256-FAuL3A8wtGwt+GM180A7wMlIvJvGoLmxNLCtnomxV3o=";
};
nativeBuildInputs = with home-assistant.python.pkgs; [
beautifulsoup4
];
meta = {
changelog = "https://github.com/natekspencer/ha-bedjet/releases/tag/${version}";
description = "This project provides various entities to allow control of a BedJet device.";
homepage = "https://github.com/natekspencer/ha-bedjet";
maintainers = [ ];
};
}