summary refs log tree commit diff
diff options
context:
space:
mode:
authorDaiderd Jordan <daiderd@gmail.com>2018-03-19 23:16:42 +0100
committerGitHub <noreply@github.com>2018-03-19 23:16:42 +0100
commitbca15c5331490149f9788498f08ceba417e327a6 (patch)
treeb15ffe43def58f14b709c4003bba77ec34344996
parent5675f17b0ed8be07752dedb1a9c42a20142f07e9 (diff)
parentbd836b7761a495e6c48979b728fa279a42241a03 (diff)
downloadnixlib-bca15c5331490149f9788498f08ceba417e327a6.tar
nixlib-bca15c5331490149f9788498f08ceba417e327a6.tar.gz
nixlib-bca15c5331490149f9788498f08ceba417e327a6.tar.bz2
nixlib-bca15c5331490149f9788498f08ceba417e327a6.tar.lz
nixlib-bca15c5331490149f9788498f08ceba417e327a6.tar.xz
nixlib-bca15c5331490149f9788498f08ceba417e327a6.tar.zst
nixlib-bca15c5331490149f9788498f08ceba417e327a6.zip
Merge pull request #37347 from knedlsepp/fix-pycurl-on-darwin
python3Packages.pycurl: fix darwin build
-rw-r--r--pkgs/development/python-modules/pycurl/default.nix8
1 files changed, 7 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/pycurl/default.nix b/pkgs/development/python-modules/pycurl/default.nix
index e1d9158a4f71..27a9790dce0e 100644
--- a/pkgs/development/python-modules/pycurl/default.nix
+++ b/pkgs/development/python-modules/pycurl/default.nix
@@ -24,7 +24,13 @@ buildPythonPackage rec {
   checkInputs = [ bottle pytest nose flaky ];
 
   checkPhase = ''
-    py.test -k "not test_ssl_in_static_libs and not ssh_key_cb_test" tests
+    py.test -k "not ssh_key_cb_test \
+                and not test_libcurl_ssl_gnutls \
+                and not test_libcurl_ssl_nss \
+                and not test_libcurl_ssl_openssl \
+                and not test_libcurl_ssl_unrecognized \
+                and not test_request_with_verifypeer \
+                and not test_ssl_in_static_libs" tests
   '';
 
   preConfigure = ''