python3Packages.aioimaplib: disable python 3.10

This commit is contained in:
P. R. d. O 2022-05-12 06:34:51 -06:00
parent 03c48beada
commit 06b1d5f96c
No known key found for this signature in database
GPG Key ID: 7B0FF33FF90110C7

View File

@ -1,4 +1,6 @@
{ lib
, pythonOlder
, pythonAtLeast
, asynctest
, buildPythonPackage
, docutils
@ -15,6 +17,11 @@
buildPythonPackage rec {
pname = "aioimaplib";
version = "0.9.0";
format = "setuptools";
# Check https://github.com/bamthomas/aioimaplib/issues/75
# for Python 3.10 support
disabled = pythonOlder "3.5" || pythonAtLeast "3.10";
src = fetchFromGitHub {
owner = "bamthomas";