2018-10-16 23:15:06 +02:00
|
|
|
{ stdenv
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
, tornado
|
|
|
|
, requests
|
|
|
|
, httplib2
|
|
|
|
, sure
|
|
|
|
, nose
|
2019-05-15 13:17:05 +02:00
|
|
|
, nose-exclude
|
2018-10-16 23:15:06 +02:00
|
|
|
, coverage
|
2018-11-29 14:09:00 +01:00
|
|
|
, rednose
|
|
|
|
, nose-randomly
|
2019-01-05 11:54:27 +01:00
|
|
|
, six
|
|
|
|
, mock
|
2018-10-16 23:15:06 +02:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "httpretty";
|
2018-11-11 14:47:25 +01:00
|
|
|
version = "0.9.6";
|
2018-10-16 23:15:06 +02:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2018-11-11 14:47:25 +01:00
|
|
|
sha256 = "01b52d45077e702eda491f4fe75328d3468fd886aed5dcc530003e7b2b5939dc";
|
2018-10-16 23:15:06 +02:00
|
|
|
};
|
|
|
|
|
2019-05-15 13:17:05 +02:00
|
|
|
propagatedBuildInputs = [ six ];
|
|
|
|
|
2019-01-05 11:54:27 +01:00
|
|
|
checkInputs = [ nose sure coverage mock rednose
|
2019-05-15 13:17:05 +02:00
|
|
|
# Following not declared in setup.py
|
|
|
|
nose-randomly requests tornado httplib2 nose-exclude
|
2019-01-05 11:54:27 +01:00
|
|
|
];
|
2018-10-16 23:15:06 +02:00
|
|
|
|
2019-02-14 20:42:44 +01:00
|
|
|
__darwinAllowLocalNetworking = true;
|
|
|
|
|
2019-05-16 14:41:48 +02:00
|
|
|
# Those flaky tests are failing intermittently on all platforms
|
|
|
|
NOSE_EXCLUDE = stdenv.lib.concatStringsSep "," [
|
|
|
|
"tests.functional.test_httplib2.test_callback_response"
|
|
|
|
"tests.functional.test_requests.test_streaming_responses"
|
2019-09-08 17:23:04 +02:00
|
|
|
"tests.functional.test_httplib2.test_callback_response"
|
2019-05-16 14:41:48 +02:00
|
|
|
];
|
2019-05-15 13:17:05 +02:00
|
|
|
|
2018-10-16 23:15:06 +02:00
|
|
|
meta = with stdenv.lib; {
|
2019-05-15 13:17:05 +02:00
|
|
|
homepage = "https://httpretty.readthedocs.org/";
|
2018-10-16 23:15:06 +02:00
|
|
|
description = "HTTP client request mocking tool";
|
|
|
|
license = licenses.mit;
|
|
|
|
};
|
|
|
|
}
|