15 buildPythonPackage rec {
16 pname = "geventhttpclient";
18 format = "setuptools";
20 disabled = pythonOlder "3.6";
23 inherit pname version;
24 hash = "sha256-6+oI55wap9A7Q5NrNHwPhzVub7HGhFc1oR8jyUnGVfc=";
27 propagatedBuildInputs = [
40 # lots of: [Errno 48] Address already in use: ('127.0.0.1', 54323)
41 doCheck = !stdenv.isDarwin;
43 __darwinAllowLocalNetworking = true;
46 # socket.gaierror: [Errno -3] Temporary failure in name resolution
48 "test_client_without_leading_slas"
49 "test_request_with_headers"
50 "test_response_context_manager"
52 "test_ssl_fail_invalid_certificate"
53 "test_multi_queries_greenlet_safe"
56 pythonImportsCheck = [
61 homepage = "https://github.com/geventhttpclient/geventhttpclient";
62 description = "High performance, concurrent HTTP client library using gevent";
63 changelog = "https://github.com/geventhttpclient/geventhttpclient/releases/tag/${version}";
64 license = licenses.mit;
65 maintainers = with maintainers; [ koral ];