2017-09-05 09:16:41 +00:00
|
|
|
{ stdenv, buildPythonPackage, fetchPypi
|
2017-09-05 09:04:42 +00:00
|
|
|
, pytest, mock, tornado, pyopenssl, cryptography
|
|
|
|
, idna, certifi, ipaddress, pysocks }:
|
2017-09-05 09:16:41 +00:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "urllib3";
|
2018-06-12 16:47:08 +00:00
|
|
|
version = "1.23";
|
2017-09-05 09:16:41 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2018-06-12 16:47:08 +00:00
|
|
|
sha256 = "a68ac5e15e76e7e5dd2b8f94007233e01effe3e50e8daddf69acfd81cb686baf";
|
2017-09-05 09:16:41 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
NOSE_EXCLUDE = stdenv.lib.concatStringsSep "," [
|
|
|
|
"test_headers" "test_headerdict" "test_can_validate_ip_san" "test_delayed_body_read_timeout"
|
|
|
|
"test_timeout_errors_cause_retries" "test_select_multiple_interrupts_with_event"
|
|
|
|
];
|
|
|
|
|
|
|
|
checkPhase = ''
|
|
|
|
nosetests -v --cover-min-percentage 1
|
|
|
|
'';
|
|
|
|
|
|
|
|
doCheck = false;
|
|
|
|
|
2017-09-05 09:04:42 +00:00
|
|
|
checkInputs = [ pytest mock tornado ];
|
|
|
|
propagatedBuildInputs = [ pyopenssl cryptography idna certifi ipaddress pysocks ];
|
2017-09-05 09:16:41 +00:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2017-09-05 09:04:42 +00:00
|
|
|
description = "Powerful, sanity-friendly HTTP client for Python";
|
|
|
|
homepage = https://github.com/shazow/urllib3;
|
2017-09-05 09:16:41 +00:00
|
|
|
license = licenses.mit;
|
|
|
|
};
|
|
|
|
}
|