2021-01-24 00:29:22 +00:00
|
|
|
{ lib
|
2018-10-16 22:15:06 +01:00
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
, tornado
|
|
|
|
, requests
|
|
|
|
, httplib2
|
|
|
|
, sure
|
|
|
|
, nose
|
2019-05-15 12:17:05 +01:00
|
|
|
, nose-exclude
|
2018-10-16 22:15:06 +01:00
|
|
|
, coverage
|
2018-11-29 13:09:00 +00:00
|
|
|
, rednose
|
|
|
|
, nose-randomly
|
2019-01-05 10:54:27 +00:00
|
|
|
, six
|
|
|
|
, mock
|
2020-06-07 13:46:11 +01:00
|
|
|
, eventlet
|
|
|
|
, pytest
|
|
|
|
, freezegun
|
2018-10-16 22:15:06 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "httpretty";
|
2021-06-18 22:47:22 +01:00
|
|
|
version = "1.1.3";
|
2018-10-16 22:15:06 +01:00
|
|
|
|
2020-03-18 12:25:22 +00:00
|
|
|
# drop this for version > 0.9.7
|
|
|
|
# Flaky tests: https://github.com/gabrielfalcao/HTTPretty/pull/394
|
2021-01-24 00:29:22 +00:00
|
|
|
doCheck = lib.versionAtLeast version "0.9.8";
|
2020-03-18 12:25:22 +00:00
|
|
|
|
2018-10-16 22:15:06 +01:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2021-06-18 22:47:22 +01:00
|
|
|
sha256 = "229ade39175ea4324e767f29dc24e5f846fbc72bf80e1a919b2547a6574ff601";
|
2018-10-16 22:15:06 +01:00
|
|
|
};
|
|
|
|
|
2019-05-15 12:17:05 +01:00
|
|
|
propagatedBuildInputs = [ six ];
|
|
|
|
|
2020-06-07 13:46:11 +01:00
|
|
|
checkInputs = [ nose sure coverage mock rednose pytest
|
2019-05-15 12:17:05 +01:00
|
|
|
# Following not declared in setup.py
|
2020-06-07 13:46:11 +01:00
|
|
|
nose-randomly requests tornado httplib2 nose-exclude freezegun
|
2019-01-05 10:54:27 +00:00
|
|
|
];
|
2018-10-16 22:15:06 +01:00
|
|
|
|
2020-06-07 13:46:11 +01:00
|
|
|
checkPhase = ''
|
|
|
|
nosetests tests/unit # functional tests cause trouble requiring /etc/protocol
|
|
|
|
'';
|
|
|
|
|
2019-02-14 19:42:44 +00:00
|
|
|
__darwinAllowLocalNetworking = true;
|
|
|
|
|
2019-05-16 13:41:48 +01:00
|
|
|
# Those flaky tests are failing intermittently on all platforms
|
2021-01-24 00:29:22 +00:00
|
|
|
NOSE_EXCLUDE = lib.concatStringsSep "," [
|
2019-05-16 13:41:48 +01:00
|
|
|
"tests.functional.test_httplib2.test_callback_response"
|
|
|
|
"tests.functional.test_requests.test_streaming_responses"
|
2019-09-08 16:23:04 +01:00
|
|
|
"tests.functional.test_httplib2.test_callback_response"
|
2020-02-21 08:12:05 +00:00
|
|
|
"tests.functional.test_requests.test_httpretty_should_allow_adding_and_overwritting_by_kwargs_u2"
|
2019-05-16 13:41:48 +01:00
|
|
|
];
|
2019-05-15 12:17:05 +01:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2019-05-15 12:17:05 +01:00
|
|
|
homepage = "https://httpretty.readthedocs.org/";
|
2018-10-16 22:15:06 +01:00
|
|
|
description = "HTTP client request mocking tool";
|
|
|
|
license = licenses.mit;
|
|
|
|
};
|
|
|
|
}
|