aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/development/python-modules/httpretty/default.nix
diff options
context:
space:
mode:
authorMx Kookie <kookie@spacekookie.de>2020-10-31 19:35:09 +0100
committerMx Kookie <kookie@spacekookie.de>2020-10-31 19:35:09 +0100
commitc4625b175f8200f643fd6e11010932ea44c78433 (patch)
treebce3f89888c8ac3991fa5569a878a9eab6801ccc /infra/libkookie/nixpkgs/pkgs/development/python-modules/httpretty/default.nix
parent49f735974dd103039ddc4cb576bb76555164a9e7 (diff)
parentd661aa56a8843e991261510c1bb28fdc2f6975ae (diff)
Add 'infra/libkookie/' from commit 'd661aa56a8843e991261510c1bb28fdc2f6975ae'
git-subtree-dir: infra/libkookie git-subtree-mainline: 49f735974dd103039ddc4cb576bb76555164a9e7 git-subtree-split: d661aa56a8843e991261510c1bb28fdc2f6975ae
Diffstat (limited to 'infra/libkookie/nixpkgs/pkgs/development/python-modules/httpretty/default.nix')
-rw-r--r--infra/libkookie/nixpkgs/pkgs/development/python-modules/httpretty/default.nix59
1 files changed, 59 insertions, 0 deletions
diff --git a/infra/libkookie/nixpkgs/pkgs/development/python-modules/httpretty/default.nix b/infra/libkookie/nixpkgs/pkgs/development/python-modules/httpretty/default.nix
new file mode 100644
index 000000000000..895a28356ee5
--- /dev/null
+++ b/infra/libkookie/nixpkgs/pkgs/development/python-modules/httpretty/default.nix
@@ -0,0 +1,59 @@
+{ stdenv
+, buildPythonPackage
+, fetchPypi
+, tornado
+, requests
+, httplib2
+, sure
+, nose
+, nose-exclude
+, coverage
+, rednose
+, nose-randomly
+, six
+, mock
+, eventlet
+, pytest
+, freezegun
+}:
+
+buildPythonPackage rec {
+ pname = "httpretty";
+ version = "1.0.2";
+
+ # drop this for version > 0.9.7
+ # Flaky tests: https://github.com/gabrielfalcao/HTTPretty/pull/394
+ doCheck = stdenv.lib.versionAtLeast version "0.9.8";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "24a6fd2fe1c76e94801b74db8f52c0fb42718dc4a199a861b305b1a492b9d868";
+ };
+
+ propagatedBuildInputs = [ six ];
+
+ checkInputs = [ nose sure coverage mock rednose pytest
+ # Following not declared in setup.py
+ nose-randomly requests tornado httplib2 nose-exclude freezegun
+ ];
+
+ checkPhase = ''
+ nosetests tests/unit # functional tests cause trouble requiring /etc/protocol
+ '';
+
+ __darwinAllowLocalNetworking = true;
+
+ # 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"
+ "tests.functional.test_httplib2.test_callback_response"
+ "tests.functional.test_requests.test_httpretty_should_allow_adding_and_overwritting_by_kwargs_u2"
+ ];
+
+ meta = with stdenv.lib; {
+ homepage = "https://httpretty.readthedocs.org/";
+ description = "HTTP client request mocking tool";
+ license = licenses.mit;
+ };
+}