From 4ec2b91ac0d5a273b0ecd57403a4223d96e5d857 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Wed, 24 May 2023 09:03:24 +0200 Subject: [PATCH] python310Packages.pytapo: disable uinsupported Python releases --- pkgs/development/python-modules/pytapo/default.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/pytapo/default.nix b/pkgs/development/python-modules/pytapo/default.nix index 1907cdb630d..63d4839dea7 100644 --- a/pkgs/development/python-modules/pytapo/default.nix +++ b/pkgs/development/python-modules/pytapo/default.nix @@ -1,6 +1,7 @@ { lib , buildPythonPackage , fetchPypi +, pythonOlder # propagates , pycryptodome @@ -14,6 +15,8 @@ buildPythonPackage rec { version = "3.1.13"; format = "setuptools"; + disabled = pythonOlder "3.7"; + src = fetchPypi { inherit pname version; hash = "sha256-fuColL2POq9hGL53oxPGZri5m1AqBPwdggCt6i4RM/Q="; @@ -34,7 +37,7 @@ buildPythonPackage rec { doCheck = false; meta = with lib; { - description = "Python library for communication with Tapo Cameras "; + description = "Python library for communication with Tapo Cameras"; homepage = "https://github.com/JurajNyiri/pytapo"; license = with licenses; [ mit ]; maintainers = with maintainers; [ fleaz ];