summaryrefslogtreecommitdiffstats
path: root/pkgs/development/python-modules/aioapns
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2022-11-11 23:26:00 +0000
committerMario Rodas <marsam@users.noreply.github.com>2022-11-11 23:26:00 +0000
commit595d7f91f1dfead6dc286ae75b3014557d627a71 (patch)
treee19235fd7805391e0be000d3d054a37a1c602052 /pkgs/development/python-modules/aioapns
parenta83f6a418a4ad46157b938a684dfc2f6a246e1b3 (diff)
python310Packages.aioapns: disable for Python<3.6
Diffstat (limited to 'pkgs/development/python-modules/aioapns')
-rw-r--r--pkgs/development/python-modules/aioapns/default.nix3
1 files changed, 3 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/aioapns/default.nix b/pkgs/development/python-modules/aioapns/default.nix
index a944c6e87d35..a083a0c2f179 100644
--- a/pkgs/development/python-modules/aioapns/default.nix
+++ b/pkgs/development/python-modules/aioapns/default.nix
@@ -5,6 +5,7 @@
, lib
, pyjwt
, pyopenssl
+, pythonOlder
}:
buildPythonPackage rec {
@@ -12,6 +13,8 @@ buildPythonPackage rec {
version = "2.2";
format = "pyproject";
+ disabled = pythonOlder "3.6";
+
src = fetchPypi {
inherit pname version;
sha256 = "sha256-3FMNIhIZrstPKTfHVmN+K28UR2G26HZ5S/JtXmaFk1c=";