about summary refs log tree commit diff
path: root/pkgs/development/python-modules/pyopenssl
diff options
context:
space:
mode:
authorFabian Möller <fabianm88@gmail.com>2021-01-14 10:14:45 +0100
committerFabian Möller <fabianm88@gmail.com>2021-01-14 10:14:45 +0100
commit9c9cf1ebbd9e0ba359fecc10bec5b86bf431d696 (patch)
tree9cdeb50e7eaf8c28c09ee9026fd0359b83b1c3dc /pkgs/development/python-modules/pyopenssl
parent3022d757812276206ecc143cf7c76c35719a3b3a (diff)
pyopenssl: skip test that fails on 32-bit architectures
Diffstat (limited to 'pkgs/development/python-modules/pyopenssl')
-rw-r--r--pkgs/development/python-modules/pyopenssl/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/pyopenssl/default.nix b/pkgs/development/python-modules/pyopenssl/default.nix
index 202607186b94d..023e5f12fd482 100644
--- a/pkgs/development/python-modules/pyopenssl/default.nix
+++ b/pkgs/development/python-modules/pyopenssl/default.nix
@@ -56,7 +56,7 @@ let
     optionals (versionAtLeast (getVersion openssl.name) "1.1") failingOpenSSL_1_1Tests
   ) ++ (
     # https://github.com/pyca/pyopenssl/issues/974
-    optionals stdenv.isi686 [ "test_verify_with_time" ]
+    optionals stdenv.is32bit [ "test_verify_with_time" ]
   );
 
   # Compose the final string expression, including the "-k" and the single quotes.