mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 22:43:01 +00:00
home-assistant-custom-components.xiaomi_miot: 0.7.21 -> 0.7.23 (#356947)
This commit is contained in:
commit
f89fd475c5
@ -2,9 +2,8 @@
|
||||
lib,
|
||||
buildHomeAssistantComponent,
|
||||
fetchFromGitHub,
|
||||
hap-python,
|
||||
construct,
|
||||
micloud,
|
||||
pyqrcode,
|
||||
python-miio,
|
||||
nix-update-script,
|
||||
}:
|
||||
@ -12,19 +11,18 @@
|
||||
buildHomeAssistantComponent rec {
|
||||
owner = "al-one";
|
||||
domain = "xiaomi_miot";
|
||||
version = "0.7.21";
|
||||
version = "0.7.23";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "al-one";
|
||||
repo = "hass-xiaomi-miot";
|
||||
rev = "v${version}";
|
||||
hash = "sha256-5MYA5MejQAANyjVqhqZtaIEQEs1K/aOx+1n+L9TmNmY=";
|
||||
hash = "sha256-PTjkKuK+DAOmKREr0AHjFXzy4ktguD4ZOHcWuLedLH0=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
hap-python
|
||||
dependencies = [
|
||||
construct
|
||||
micloud
|
||||
pyqrcode
|
||||
python-miio
|
||||
];
|
||||
|
||||
@ -32,11 +30,24 @@ buildHomeAssistantComponent rec {
|
||||
|
||||
passthru.updateScript = nix-update-script { };
|
||||
|
||||
meta = with lib; {
|
||||
meta = {
|
||||
changelog = "https://github.com/al-one/hass-xiaomi-miot/releases/tag/v${version}";
|
||||
description = "Automatic integrate all Xiaomi devices to HomeAssistant via miot-spec, support Wi-Fi, BLE, ZigBee devices";
|
||||
longDescription = ''
|
||||
Xiaomi Miot For HomeAssistant depends on `ffmpeg` and `homekit`, example how to setup in NixOS `configuration.nix`:
|
||||
|
||||
```
|
||||
{ config, lib, pkgs, ... }:
|
||||
{
|
||||
services.home-assistant = {
|
||||
customComponents = [ pkgs.home-assistant-custom-components.xiaomi_miot ];
|
||||
extraComponents = [ "ffmpeg" "homekit" ];
|
||||
};
|
||||
}
|
||||
```
|
||||
'';
|
||||
homepage = "https://github.com/al-one/hass-xiaomi-miot";
|
||||
maintainers = with maintainers; [ azuwis ];
|
||||
license = licenses.asl20;
|
||||
maintainers = with lib.maintainers; [ azuwis ];
|
||||
license = lib.licenses.asl20;
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user