summary refs log tree commit diff
path: root/pkgs/development/python-modules/pycurl/default.nix
blob: 27a9790dce0ed337d161ef1d8788299c26ce5fe9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{ buildPythonPackage
, isPyPy
, fetchPypi
, curl
, openssl
, bottle
, pytest
, nose
, flaky
}:

buildPythonPackage rec {
  pname = "pycurl";
  version = "7.43.0.1";
  disabled = isPyPy; # https://github.com/pycurl/pycurl/issues/208

  src = fetchPypi {
    inherit pname version;
    sha256 = "1ali1gjs9iliwjra7w0y5hwg79a2fd0f4ydvv6k27sgxpbr1n8s3";
  };

  buildInputs = [ curl openssl.out ];

  checkInputs = [ bottle pytest nose flaky ];

  checkPhase = ''
    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 = ''
    substituteInPlace setup.py --replace '--static-libs' '--libs'
    export PYCURL_SSL_LIBRARY=openssl
  '';

  meta = {
    homepage = http://pycurl.sourceforge.net/;
    description = "Python wrapper for libcurl";
  };
}