pythonPackages.pycurl: 7.43.0.2 -> 7.43.0.3

This commit is contained in:
Chris Ostrouchov 2019-07-16 15:44:41 -04:00 committed by Frederik Rietdijk
parent be25210e89
commit f10553883d

View File

@ -11,27 +11,34 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "pycurl"; pname = "pycurl";
version = "7.43.0.2"; version = "7.43.0.3";
disabled = isPyPy; # https://github.com/pycurl/pycurl/issues/208 disabled = isPyPy; # https://github.com/pycurl/pycurl/issues/208
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "0f0cdfc7a92d4f2a5c44226162434e34f7d6967d3af416a6f1448649c09a25a4"; sha256 = "13nsvqhvnmnvfk75s8iynqsgszyv06cjp4drd3psi7zpbh63623g";
}; };
buildInputs = [ curl openssl.out ]; buildInputs = [
nativeBuildInputs = [ curl ]; curl
openssl.out
];
checkInputs = [ bottle pytest nose flaky ]; nativeBuildInputs = [
curl
];
checkInputs = [
bottle
pytest
nose
flaky
];
checkPhase = '' checkPhase = ''
py.test -k "not ssh_key_cb_test \ pytest tests -k "not test_ssl_in_static_libs \
and not test_libcurl_ssl_gnutls \ and not test_keyfunction \
and not test_libcurl_ssl_nss \ and not test_keyfunction_bogus_return"
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 = '' preConfigure = ''