pythonPackages.httpretty: 0.8.10 -> 0.9.6

This commit is contained in:
Chris Ostrouchov 2018-11-29 08:09:00 -05:00 committed by Frederik Rietdijk
parent d5399b074a
commit 3e69473974

View file

@ -9,23 +9,22 @@
, coverage
, certifi
, urllib3
, isPy3k
, rednose
, nose-randomly
}:
buildPythonPackage rec {
pname = "httpretty";
version = "0.9.6";
doCheck = false;
src = fetchPypi {
inherit pname version;
sha256 = "01b52d45077e702eda491f4fe75328d3468fd886aed5dcc530003e7b2b5939dc";
};
checkInputs = [ tornado requests httplib2 sure nose coverage certifi ];
checkInputs = [ tornado requests httplib2 sure nose nose-randomly rednose coverage certifi ];
propagatedBuildInputs = [ urllib3 ];
meta = with stdenv.lib; {
homepage = "https://falcao.it/HTTPretty/";
description = "HTTP client request mocking tool";