Files
nix-config/packages/homeassistant/ha-bedjet/default.nix
2025-12-19 14:49:44 -06:00

30 lines
701 B
Nix

{
buildHomeAssistantComponent,
python3Packages,
fetchFromGitHub,
...
}:
buildHomeAssistantComponent rec {
owner = "natekspencer";
domain = "bedjet";
version = "1.2.2";
src = fetchFromGitHub {
owner = owner;
repo = "ha-bedjet";
rev = version;
hash = "sha256-nJ2S1Wz/M/8my+5iDEMzfBZd9hKnrSBxUqnPfy6Tr7A=";
};
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 = [ ];
};
}