diff --git a/pkgs/development/python-modules/pytado/default.nix b/pkgs/development/python-modules/pytado/default.nix index ddd618d6d14f..8575fceadc4f 100644 --- a/pkgs/development/python-modules/pytado/default.nix +++ b/pkgs/development/python-modules/pytado/default.nix @@ -3,18 +3,21 @@ , fetchFromGitHub , pytestCheckHook , requests +, pythonOlder }: buildPythonPackage rec { pname = "pytado"; - version = "0.16.0"; + version = "0.17.2"; + format = "setuptools"; + + disabled = pythonOlder "3.7"; src = fetchFromGitHub { owner = "wmalgadey"; repo = "PyTado"; - # Upstream hasn't tagged 0.13.0 yet rev = "refs/tags/${version}"; - sha256 = "sha256-tpWr+VlkJ9svN9XtBIDEAos4uxYCl6njvUBPIJG++Yg="; + sha256 = "sha256-w1qtSEpnZCs7+M/0Gywz9AeMxUzz2csHKm9SxBKzmz4="; }; propagatedBuildInputs = [ @@ -32,7 +35,8 @@ buildPythonPackage rec { meta = with lib; { description = "Python binding for Tado web API"; homepage = "https://github.com/wmalgadey/PyTado"; - license = licenses.gpl3; + changelog = "https://github.com/wmalgadey/PyTado/releases/tag/${version}"; + license = licenses.gpl3Only; maintainers = with maintainers; [ ]; }; }