Files
nix-config/packages/homeassistant/ha-bedjet/default.nix
2025-12-26 11:45:05 -06:00

30 lines
701 B
Nix

{
buildHomeAssistantComponent,
python3Packages,
fetchFromGitHub,
...
}:
buildHomeAssistantComponent rec {
owner = "natekspencer";
domain = "bedjet";
version = "1.2.3";
src = fetchFromGitHub {
owner = owner;
repo = "ha-bedjet";
rev = version;
hash = "sha256-Zuidx6YrjqDzgtOTW380Rfzi1zHqJ07IrgBYztfM2II=";
};
propagatedBuildInputs = with python3Packages; [
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 = [ ];
};
}