Revert "python3Packages.python-tado: 0.18.15 -> 0.19.2"

This reverts commit f001ecef6e.

This breaks the home-assistant tests for the tado integration.
This commit is contained in:
Martin Weinelt
2025-09-05 01:32:33 +02:00
parent 60f9661b81
commit e10b7c1445

View File

@@ -2,35 +2,33 @@
lib, lib,
buildPythonPackage, buildPythonPackage,
fetchFromGitHub, fetchFromGitHub,
poetry-core,
pytest-cov-stub, pytest-cov-stub,
pytest-mock, pytest-mock,
pytest-socket,
pytestCheckHook, pytestCheckHook,
requests, requests,
responses, responses,
setuptools,
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "python-tado"; pname = "python-tado";
version = "0.19.2"; version = "0.18.15";
pyproject = true; pyproject = true;
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "wmalgadey"; owner = "wmalgadey";
repo = "PyTado"; repo = "PyTado";
tag = version; tag = version;
hash = "sha256-me62VPjKU+vh0vo4Fl86sEse1QZYD2zDpxchSiUcxTY="; hash = "sha256-FUnD5JVS816XQYqXGSDnypqcYuKVhEeFIFcENf8BkcU=";
}; };
build-system = [ poetry-core ]; build-system = [ setuptools ];
dependencies = [ requests ]; dependencies = [ requests ];
nativeCheckInputs = [ nativeCheckInputs = [
pytest-cov-stub pytest-cov-stub
pytest-mock pytest-mock
pytest-socket
pytestCheckHook pytestCheckHook
responses responses
]; ];