From e10b7c1445805b1831bace5803c0f92caca1dcc5 Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Fri, 5 Sep 2025 01:32:33 +0200 Subject: [PATCH] Revert "python3Packages.python-tado: 0.18.15 -> 0.19.2" This reverts commit f001ecef6e818eceac5dfbd3c8d5b6b6a5def628. This breaks the home-assistant tests for the tado integration. --- .../development/python-modules/python-tado/default.nix | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/pkgs/development/python-modules/python-tado/default.nix b/pkgs/development/python-modules/python-tado/default.nix index 7ef8016aad0f..7cde7aa3d8e6 100644 --- a/pkgs/development/python-modules/python-tado/default.nix +++ b/pkgs/development/python-modules/python-tado/default.nix @@ -2,35 +2,33 @@ lib, buildPythonPackage, fetchFromGitHub, - poetry-core, pytest-cov-stub, pytest-mock, - pytest-socket, pytestCheckHook, requests, responses, + setuptools, }: buildPythonPackage rec { pname = "python-tado"; - version = "0.19.2"; + version = "0.18.15"; pyproject = true; src = fetchFromGitHub { owner = "wmalgadey"; repo = "PyTado"; tag = version; - hash = "sha256-me62VPjKU+vh0vo4Fl86sEse1QZYD2zDpxchSiUcxTY="; + hash = "sha256-FUnD5JVS816XQYqXGSDnypqcYuKVhEeFIFcENf8BkcU="; }; - build-system = [ poetry-core ]; + build-system = [ setuptools ]; dependencies = [ requests ]; nativeCheckInputs = [ pytest-cov-stub pytest-mock - pytest-socket pytestCheckHook responses ];