From 40b1f0d473f8c418122eecc3dce8011452f00090 Mon Sep 17 00:00:00 2001 From: Arnout Engelen Date: Sun, 13 Dec 2020 10:48:18 +0100 Subject: [PATCH] pyopenssl: skip test that fails on i686 Found in https://github.com/NixOS/nixpkgs/pull/105454#issuecomment-743973848 Upstream issue https://github.com/pyca/pyopenssl/issues/974 --- pkgs/development/python-modules/pyopenssl/default.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/development/python-modules/pyopenssl/default.nix b/pkgs/development/python-modules/pyopenssl/default.nix index d9d2b382f50..202607186b9 100644 --- a/pkgs/development/python-modules/pyopenssl/default.nix +++ b/pkgs/development/python-modules/pyopenssl/default.nix @@ -54,6 +54,9 @@ let optionals (hasPrefix "libressl" openssl.meta.name) failingLibresslTests ) ++ ( optionals (versionAtLeast (getVersion openssl.name) "1.1") failingOpenSSL_1_1Tests + ) ++ ( + # https://github.com/pyca/pyopenssl/issues/974 + optionals stdenv.isi686 [ "test_verify_with_time" ] ); # Compose the final string expression, including the "-k" and the single quotes.