Merge pull request #172632 from WolfangAukang/aioimaplib-fix

python3Packages.aioimaplib: disable python 3.10
This commit is contained in:
Thiago Kenji Okada 2022-05-12 21:46:52 +01:00 committed by GitHub
commit 7379bc099e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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";