summary refs log tree commit diff
path: root/pkgs/development/python-modules
diff options
context:
space:
mode:
authorJonathan Ringer <jonringer117@gmail.com>2020-01-22 17:18:23 -0800
committerJon <jonringer@users.noreply.github.com>2020-01-22 18:17:16 -0800
commit35f6a7406d49277a9b92d0ad20fbd75f24eea551 (patch)
treecf1dffca7b2220f43561f122999ce12ad338ef7d /pkgs/development/python-modules
parent367193218862bb927d13e20235fb60a92fc51d9a (diff)
downloadnixpkgs-35f6a7406d49277a9b92d0ad20fbd75f24eea551.tar
nixpkgs-35f6a7406d49277a9b92d0ad20fbd75f24eea551.tar.gz
nixpkgs-35f6a7406d49277a9b92d0ad20fbd75f24eea551.tar.bz2
nixpkgs-35f6a7406d49277a9b92d0ad20fbd75f24eea551.tar.lz
nixpkgs-35f6a7406d49277a9b92d0ad20fbd75f24eea551.tar.xz
nixpkgs-35f6a7406d49277a9b92d0ad20fbd75f24eea551.tar.zst
nixpkgs-35f6a7406d49277a9b92d0ad20fbd75f24eea551.zip
python38Packages.aiohttp: disable
Looks like "+" operator between futures no longer works.
Reported upstream https://github.com/aio-libs/aiohttp/issues/4525
Diffstat (limited to 'pkgs/development/python-modules')
-rw-r--r--pkgs/development/python-modules/aiohttp/default.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/aiohttp/default.nix b/pkgs/development/python-modules/aiohttp/default.nix
index 40dec3e1c1e..0cecdb0291e 100644
--- a/pkgs/development/python-modules/aiohttp/default.nix
+++ b/pkgs/development/python-modules/aiohttp/default.nix
@@ -2,6 +2,7 @@
 , buildPythonPackage
 , fetchPypi
 , pythonOlder
+, pythonAtLeast
 , attrs
 , chardet
 , multidict
@@ -25,14 +26,14 @@
 buildPythonPackage rec {
   pname = "aiohttp";
   version = "3.6.2";
+  # https://github.com/aio-libs/aiohttp/issues/4525 python3.8 failures
+  disabled = pythonOlder "3.5" || pythonAtLeast "3.8";
 
   src = fetchPypi {
     inherit pname version;
     sha256 = "09pkw6f1790prnrq0k8cqgnf1qy57ll8lpmc6kld09q7zw4vi6i5";
   };
 
-  disabled = pythonOlder "3.5";
-
   checkInputs = [
     pytestrunner pytest gunicorn pytest-timeout async_generator pytest_xdist
     pytest-mock pytestcov trustme brotlipy freezegun