diff --git a/pkgs/development/python-modules/pytapo/default.nix b/pkgs/development/python-modules/pytapo/default.nix index 88945a91ea02..211e36c3578d 100644 --- a/pkgs/development/python-modules/pytapo/default.nix +++ b/pkgs/development/python-modules/pytapo/default.nix @@ -4,7 +4,6 @@ fetchPypi, pycryptodome, python-kasa, - pythonOlder, requests, rtp, setuptools, @@ -13,14 +12,12 @@ buildPythonPackage rec { pname = "pytapo"; - version = "3.3.51"; + version = "3.3.54"; pyproject = true; - disabled = pythonOlder "3.7"; - src = fetchPypi { inherit pname version; - hash = "sha256-Pog5q/tXNz+RRZXJdb2/qG3BeaHUTYtlzOkM5Twr6js="; + hash = "sha256-B31PTYqXFzLkn/YuFbq0G7SDA1wMqAcwGOaj3xfmxYA="; }; build-system = [ setuptools ]; @@ -41,7 +38,8 @@ buildPythonPackage rec { meta = with lib; { description = "Python library for communication with Tapo Cameras"; homepage = "https://github.com/JurajNyiri/pytapo"; - license = with licenses; [ mit ]; + changelog = "https://github.com/JurajNyiri/pytapo/releases/tag/${version}"; + license = licenses.mit; maintainers = with maintainers; [ fleaz ]; }; }