From bb6627f049a805a10583035d0f625da788e4efea Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Wed, 3 Jun 2026 04:11:51 +0200 Subject: [PATCH] python3Packages.tuya-device-handlers: 0.0.18 -> 0.0.22 https://github.com/home-assistant-libs/tuya-device-handlers/releases/tag/v0.0.22 --- .../python-modules/tuya-device-handlers/default.nix | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/tuya-device-handlers/default.nix b/pkgs/development/python-modules/tuya-device-handlers/default.nix index 574b447b9341..7edead4f082c 100644 --- a/pkgs/development/python-modules/tuya-device-handlers/default.nix +++ b/pkgs/development/python-modules/tuya-device-handlers/default.nix @@ -10,14 +10,14 @@ buildPythonPackage (finalAttrs: { pname = "tuya-device-handlers"; - version = "0.0.18"; + version = "0.0.22"; pyproject = true; src = fetchFromGitHub { owner = "home-assistant-libs"; repo = "tuya-device-handlers"; tag = "v${finalAttrs.version}"; - hash = "sha256-ZzK6IV6AF+5+oOW9ADM/zgwFTmKNT2CzaEuXXK2hyVo="; + hash = "sha256-6zAzHjOzCaPYNP+dwz4/2o0/WXvEAZzPIoJW5Nwenu8="; }; build-system = [ poetry-core ]; @@ -29,6 +29,11 @@ buildPythonPackage (finalAttrs: { syrupy ]; + disabledTests = [ + # pathlib.Path(path).relative_to(_PROJECT_ROOT) evaluates to a path that is not below the build dir + "test_customer_device_with_quirk_as_dict" + ]; + pythonImportsCheck = [ "tuya_device_handlers" ]; meta = {