ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / httpretty / default.nix
bloba47d531e332ba1dfc95695e23d069a57a6e77410
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , sure
5 , six
6 , pytest
7 , freezegun
8 , pytestCheckHook
9 }:
11 buildPythonPackage rec {
12   pname = "httpretty";
13   version = "1.1.4";
15   # drop this for version > 0.9.7
16   # Flaky tests: https://github.com/gabrielfalcao/HTTPretty/pull/394
17   doCheck = lib.versionAtLeast version "0.9.8";
19   src = fetchPypi {
20     inherit pname version;
21     sha256 = "20de0e5dd5a18292d36d928cc3d6e52f8b2ac73daec40d41eb62dee154933b68";
22   };
24   propagatedBuildInputs = [ six ];
26   checkInputs = [
27     sure
28     freezegun
29     pytestCheckHook
30   ];
32   disabledTestPaths = [
33     "tests/bugfixes"
34     "tests/functional"
35     "tests/pyopenssl"
36   ];
38   __darwinAllowLocalNetworking = true;
40   meta = with lib; {
41     homepage = "https://httpretty.readthedocs.org/";
42     description = "HTTP client request mocking tool";
43     license = licenses.mit;
44   };