diff --git a/pkgs/development/python-modules/pytado/default.nix b/pkgs/development/python-modules/pytado/default.nix index 029c73c1812c..31cea0c09d06 100644 --- a/pkgs/development/python-modules/pytado/default.nix +++ b/pkgs/development/python-modules/pytado/default.nix @@ -1,19 +1,36 @@ -{ lib, buildPythonPackage, fetchFromGitHub }: +{ lib +, buildPythonPackage +, fetchFromGitHub +, pytestCheckHook +, requests +}: buildPythonPackage rec { - pname = "PyTado"; - version = "0.11.0"; + pname = "pytado"; + version = "0.13.0"; src = fetchFromGitHub { owner = "wmalgadey"; - repo = pname; - # Upstream hasn't tagged this release yet. This commit fixes the build. - rev = "79a5dfdf75cd9a3e1a1ee8a8ff0d08923aebda7b"; - sha256 = "14xdfw4913g4j4h576hjbigm7fiw8k0dc8s98gh2ag9xrc2ifgr0"; + repo = "PyTado"; + # Upstream hasn't tagged 0.13.0 yet + rev = "2a243174e9ae01ef7adae940ecc6e340992ab28d"; + sha256 = "Y1FxEzs/AF0ZTPdOK/1v+2U2fidfu+AmZbPddJCWIFc="; }; + propagatedBuildInputs = [ + requests + ]; + + checkInputs = [ + pytestCheckHook + ]; + + pythonImportsCheck = [ + "PyTado" + ]; + meta = with lib; { - description = "Python binding for Tado web API. Pythonize your central heating!"; + description = "Python binding for Tado web API"; homepage = "https://github.com/wmalgadey/PyTado"; license = licenses.gpl3; maintainers = with maintainers; [ elseym ];