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