mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 15:41:48 +00:00
pycurl: 7.19.5.1 -> 7.43.0.1
This commit is contained in:
parent
d78a411d98
commit
99131b4fc2
@ -12944,19 +12944,21 @@ in {
|
||||
};
|
||||
|
||||
pycurl = buildPythonPackage (rec {
|
||||
name = "pycurl-7.19.5.1";
|
||||
pname = "pycurl";
|
||||
version = "7.43.0.1";
|
||||
disabled = isPyPy; # https://github.com/pycurl/pycurl/issues/208
|
||||
|
||||
src = pkgs.fetchurl {
|
||||
url = "http://pycurl.sourceforge.net/download/${name}.tar.gz";
|
||||
sha256 = "0v5w66ir3siimfzg3kc8hfrrilwwnbxq5bvipmrpyxar0kw715vf";
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "1ali1gjs9iliwjra7w0y5hwg79a2fd0f4ydvv6k27sgxpbr1n8s3";
|
||||
};
|
||||
|
||||
buildInputs = with self; [ pkgs.curl pkgs.openssl.out ];
|
||||
|
||||
checkInputs = with self; [ bottle pytest nose ];
|
||||
checkInputs = with self; [ bottle pytest nose flaky ];
|
||||
|
||||
checkPhase = ''
|
||||
py.test -k "not test_ssl_in_static_libs" tests
|
||||
py.test -k "not test_ssl_in_static_libs and not ssh_key_cb_test" tests
|
||||
'';
|
||||
|
||||
preConfigure = ''
|
||||
|
Loading…
Reference in New Issue
Block a user