Merge pull request #305196 from azuwis/custom-components

home-assistant-custom-components: Add smartir/xiaomi_miot/xiaomi_gateway3
This commit is contained in:
Martin Weinelt 2024-04-19 11:24:33 +02:00 committed by GitHub
commit c077b043ee
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 114 additions and 0 deletions

View File

@ -38,9 +38,15 @@
sensi = callPackage ./sensi {};
smartir = callPackage ./smartir {};
smartthinq-sensors = callPackage ./smartthinq-sensors {};
waste_collection_schedule = callPackage ./waste_collection_schedule {};
xiaomi_gateway3 = callPackage ./xiaomi_gateway3 {};
xiaomi_miot = callPackage ./xiaomi_miot {};
yassi = callPackage ./yassi {};
}

View File

@ -0,0 +1,38 @@
{ lib
, buildHomeAssistantComponent
, fetchFromGitHub
, aiofiles
, broadlink
}:
buildHomeAssistantComponent rec {
owner = "smartHomeHub";
domain = "smartir";
version = "1.17.9";
src = fetchFromGitHub {
owner = "smartHomeHub";
repo = "SmartIR";
rev = version;
hash = "sha256-E6TM761cuaeQzlbjA+oZ+wt5HTJAfkF2J3i4P1Wbuic=";
};
propagatedBuildInputs = [
aiofiles
broadlink
];
dontBuild = true;
postInstall = ''
cp -r codes $out/custom_components/smartir/
'';
meta = with lib; {
changelog = "https://github.com/smartHomeHub/SmartIR/releases/tag/v${version}";
description = "Integration for Home Assistant to control climate, TV and fan devices via IR/RF controllers (Broadlink, Xiaomi, MQTT, LOOKin, ESPHome)";
homepage = "https://github.com/smartHomeHub/SmartIR";
maintainers = with maintainers; [ azuwis ];
license = licenses.mit;
};
}

View File

@ -0,0 +1,32 @@
{ lib
, buildHomeAssistantComponent
, fetchFromGitHub
, zigpy
}:
buildHomeAssistantComponent rec {
owner = "AlexxIT";
domain = "xiaomi_gateway3";
version = "4.0.3";
src = fetchFromGitHub {
owner = "AlexxIT";
repo = "XiaomiGateway3";
rev = "v${version}";
hash = "sha256-YGaVQaz3A0yM8AIC02CvMKWMJ3tW3OADYgKY8ViIt5U=";
};
propagatedBuildInputs = [
zigpy
];
dontBuild = true;
meta = with lib; {
changelog = "https://github.com/AlexxIT/XiaomiGateway3/releases/tag/v{version}";
description = "Home Assistant custom component for control Xiaomi Multimode Gateway (aka Gateway 3), Xiaomi Multimode Gateway 2, Aqara Hub E1 on default firmwares over LAN";
homepage = "https://github.com/AlexxIT/XiaomiGateway3";
maintainers = with maintainers; [ azuwis ];
license = licenses.mit;
};
}

View File

@ -0,0 +1,38 @@
{ lib
, buildHomeAssistantComponent
, fetchFromGitHub
, hap-python
, micloud
, pyqrcode
, python-miio
}:
buildHomeAssistantComponent rec {
owner = "al-one";
domain = "xiaomi_miot";
version = "0.7.17";
src = fetchFromGitHub {
owner = "al-one";
repo = "hass-xiaomi-miot";
rev = "v${version}";
hash = "sha256-IpL4e2mKCdtNu8NtI+xpx4FPW/uj1M5Rk6DswXmSJBk=";
};
propagatedBuildInputs = [
hap-python
micloud
pyqrcode
python-miio
];
dontBuild = true;
meta = with lib; {
changelog = "https://github.com/al-one/hass-xiaomi-miot/releases/tag/${version}";
description = "Automatic integrate all Xiaomi devices to HomeAssistant via miot-spec, support Wi-Fi, BLE, ZigBee devices.";
homepage = "https://github.com/al-one/hass-xiaomi-miot";
maintainers = with maintainers; [ azuwis ];
license = licenses.asl20;
};
}