Merge pull request #318773 from pathob/update-home-assistant-custom-components-tuya-local

home-assistant-custom-components.tuya_local: 2024.5.2 -> 2024.6.0
This commit is contained in:
Martin Weinelt 2024-06-12 23:57:58 +02:00 committed by GitHub
commit 3d96863685
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 9 additions and 5 deletions

View File

@ -14,14 +14,14 @@
buildPythonPackage rec {
pname = "tinytuya";
version = "1.13.2";
version = "1.14.0";
pyproject = true;
src = fetchFromGitHub {
owner = "jasonacox";
repo = "tinytuya";
rev = "refs/tags/v${version}";
hash = "sha256-44x5P+Ej/d6B5n53iDuLDBzkeZZvArpcgzXLJBcIJe0=";
hash = "sha256-ytM7S0V/hDOCb3RyzAXZEd2zV/sMVQPrah/2zRACMsQ=";
};
build-system = [ setuptools ];

View File

@ -4,21 +4,25 @@
# dependencies
, tinytuya
, tuya-device-sharing-sdk
}:
buildHomeAssistantComponent rec {
owner = "make-all";
domain = "tuya_local";
version = "2024.5.2";
version = "2024.6.0";
src = fetchFromGitHub {
inherit owner;
repo = "tuya-local";
rev = "refs/tags/${version}";
hash = "sha256-If5SLLizagolXF5Y43UQK5IZ9oB1lQJVjTorgmtRXtg=";
hash = "sha256-OLR/KFoXKqL7r7S97VpyoVHdbLfOyWU50aK6c0QhqyE=";
};
dependencies = [ tinytuya ];
dependencies = [
tinytuya
tuya-device-sharing-sdk
];
meta = with lib; {
description = "Local support for Tuya devices in Home Assistant";