From 6be8389b04913a034143474d7b93bdc79dee6b34 Mon Sep 17 00:00:00 2001 From: rnhmjoj Date: Tue, 18 Feb 2020 00:52:55 +0100 Subject: [PATCH] python/aiohttp: disable test on 32bit platforms The test `test_cookiejar` is failing because a time_t constant can't be represented on 32bit platforms. --- pkgs/development/python-modules/aiohttp/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/development/python-modules/aiohttp/default.nix b/pkgs/development/python-modules/aiohttp/default.nix index 0cecdb0291e..737d1eec3c2 100644 --- a/pkgs/development/python-modules/aiohttp/default.nix +++ b/pkgs/development/python-modules/aiohttp/default.nix @@ -1,4 +1,5 @@ { lib +, stdenv , buildPythonPackage , fetchPypi , pythonOlder @@ -54,6 +55,7 @@ buildPythonPackage rec { and not handle_keepalive_on_closed_connection \ and not proxy_https_bad_response \ and not partially_applied_handler \ + ${lib.optionalString stdenv.is32bit "and not test_cookiejar"} \ and not middleware" \ --ignore=test_connector.py '';