temp
This commit is contained in:
30
packages/homeassistant/ha-bedjet/default.nix
Normal file
30
packages/homeassistant/ha-bedjet/default.nix
Normal 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 = [ ];
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user