python312Packages.tinytuya: 1.14.0 -> 1.15.1 (#339321)

This commit is contained in:
Fabian Affolter 2024-09-04 09:17:23 +02:00 committed by GitHub
commit 0b5cda8dc2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 11 additions and 12 deletions

View File

@ -1,27 +1,26 @@
{ {
lib, lib,
buildPythonPackage, buildPythonPackage,
fetchFromGitHub,
# build-system
setuptools,
# dependencies
cryptography,
requests,
colorama, colorama,
cryptography,
fetchFromGitHub,
pythonOlder,
requests,
setuptools,
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "tinytuya"; pname = "tinytuya";
version = "1.14.0"; version = "1.15.1";
pyproject = true; pyproject = true;
disabled = pythonOlder "3.10";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "jasonacox"; owner = "jasonacox";
repo = "tinytuya"; repo = "tinytuya";
rev = "refs/tags/v${version}"; rev = "refs/tags/v${version}";
hash = "sha256-ytM7S0V/hDOCb3RyzAXZEd2zV/sMVQPrah/2zRACMsQ="; hash = "sha256-T7bT4be/h67iPIH/7hjNCYsUDP+4o4HLV523sBIjGVs=";
}; };
build-system = [ setuptools ]; build-system = [ setuptools ];

View File

@ -10,13 +10,13 @@
buildHomeAssistantComponent rec { buildHomeAssistantComponent rec {
owner = "make-all"; owner = "make-all";
domain = "tuya_local"; domain = "tuya_local";
version = "2024.6.0"; version = "2024.8.0";
src = fetchFromGitHub { src = fetchFromGitHub {
inherit owner; inherit owner;
repo = "tuya-local"; repo = "tuya-local";
rev = "refs/tags/${version}"; rev = "refs/tags/${version}";
hash = "sha256-OLR/KFoXKqL7r7S97VpyoVHdbLfOyWU50aK6c0QhqyE="; hash = "sha256-IHTWcNxmNXJk7SNnrLNFbaXJQSg6VYkAgAVmyt3JmRw=";
}; };
dependencies = [ dependencies = [