This commit is contained in:
mjallen18
2025-09-15 15:34:22 -05:00
parent 7295254fe9
commit c5e8fff07d
3 changed files with 32 additions and 1 deletions

View File

@@ -0,0 +1,30 @@
{
buildHomeAssistantComponent,
python3Packages,
fetchFromGitHub,
lib,
...
}:
buildHomeAssistantComponent rec {
owner = "natekspencer";
domain = "bedjet";
version = "1.2.0";
src = fetchFromGitHub {
owner = owner;
repo = "ha-bedjet";
rev = version;
hash = lib.fakeHash;
};
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 = [ ];
};
}