python3Packages.aioimaplib: disable python 3.10

main
P. R. d. O 2 years ago
parent 03c48beada
commit 06b1d5f96c
No known key found for this signature in database
GPG Key ID: 7B0FF33FF90110C7
  1. 7
      pkgs/development/python-modules/aioimaplib/default.nix

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

Loading…
Cancel
Save