about summary refs log tree commit diff
path: root/pkgs/development/python-modules/aioimaplib
diff options
context:
space:
mode:
authorRobert Schütz <dev@schuetz-co.de>2021-04-15 14:18:37 +0200
committerRobert Schütz <dev@schuetz-co.de>2021-04-15 14:26:25 +0200
commitf735bdfc0b71debefb80efcb5362f08843944dcc (patch)
tree5ecab8640f7dc1109defa38ac7be4aacb3dcb749 /pkgs/development/python-modules/aioimaplib
parente019872af81e4013fd518fcacfba74b1de21a50e (diff)
python3Packages.aioimaplib: 0.7.18 -> 0.8.0
Diffstat (limited to 'pkgs/development/python-modules/aioimaplib')
-rw-r--r--pkgs/development/python-modules/aioimaplib/default.nix11
1 files changed, 5 insertions, 6 deletions
diff --git a/pkgs/development/python-modules/aioimaplib/default.nix b/pkgs/development/python-modules/aioimaplib/default.nix
index 6345755bffc75..df9748f1c8490 100644
--- a/pkgs/development/python-modules/aioimaplib/default.nix
+++ b/pkgs/development/python-modules/aioimaplib/default.nix
@@ -8,20 +8,22 @@
 , nose
 , pyopenssl
 , pytestCheckHook
-, pythonOlder
+, pythonAtLeast
 , pytz
 , tzlocal
 }:
 
 buildPythonPackage rec {
   pname = "aioimaplib";
-  version = "0.7.18";
+  version = "0.8.0";
+
+  disabled = pythonAtLeast "3.9";
 
   src = fetchFromGitHub {
     owner = "bamthomas";
     repo = pname;
     rev = version;
-    sha256 = "037fxwmkdfb95cqcykrhn37p138wg9pvlsgdf45vyn1mhz5crky5";
+    sha256 = "sha256-ume25EwLNB6szokHXonDXHGKVK76CiZYOBXVUf37/x8=";
   };
 
   checkInputs = [
@@ -36,9 +38,6 @@ buildPythonPackage rec {
     tzlocal
   ];
 
-  # Project is using asynctest with doesn't work with Python 3.8 and above
-  # https://github.com/bamthomas/aioimaplib/issues/54
-  doCheck = pythonOlder "3.8";
   pythonImportsCheck = [ "aioimaplib" ];
 
   meta = with lib; {