30 lines
707 B
Nix
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 = [ ];
|
|
};
|
|
}
|