mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
python3Packages.pycurl: fix darwin build
This commit is contained in:
parent
b3c6cb6d29
commit
bd836b7761
1 changed files with 7 additions and 1 deletions
|
@ -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 = ''
|
||||
|
|
Loading…
Reference in a new issue