mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 18:03:04 +00:00
Merge pull request #172632 from WolfangAukang/aioimaplib-fix
python3Packages.aioimaplib: disable python 3.10
This commit is contained in:
commit
7379bc099e
@ -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…
Reference in New Issue
Block a user