pythonPackages.pycurl: Move to separate file

This commit is contained in:
adisbladis 2018-03-16 01:14:12 +08:00
parent a2a7037937
commit 408f6b2843
No known key found for this signature in database
GPG Key ID: ED58F95069B004F5
2 changed files with 40 additions and 28 deletions

View File

@ -0,0 +1,39 @@
{ 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 test_ssl_in_static_libs and not ssh_key_cb_test" 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";
};
}

View File

@ -12943,34 +12943,7 @@ in {
};
pycurl = 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 = with self; [ pkgs.curl pkgs.openssl.out ];
checkInputs = with self; [ bottle pytest nose flaky ];
checkPhase = ''
py.test -k "not test_ssl_in_static_libs and not ssh_key_cb_test" 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";
};
});
pycurl = callPackage ../development/python-modules/pycurl { };
pycurl2 = buildPythonPackage (rec {
name = "pycurl2-7.20.0";