3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #37347 from knedlsepp/fix-pycurl-on-darwin

python3Packages.pycurl: fix darwin build
This commit is contained in:
Daiderd Jordan 2018-03-19 23:16:42 +01:00 committed by GitHub
commit bca15c5331
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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 = ''