1 { buildPythonPackage, fetchFromGitHub, lib, pytestCheckHook, pythonOlder, requests }:
3 buildPythonPackage rec {
7 disabled = pythonOlder "3.5";
9 src = fetchFromGitHub {
13 sha256 = "0fw4f9gqnhxwpxyb34qi8bl5pmzz13h4x3mdk903hhjyccanqncr";
16 propagatedBuildInputs = [ requests ];
17 checkInputs = [ pytestCheckHook ];
21 "Python binding for Tado web API. Pythonize your central heating!";
22 homepage = "https://github.com/wmalgadey/PyTado";
23 license = licenses.gpl3Plus;
24 maintainers = with maintainers; [ jamiemagee ];