about summary refs log tree commit diff
path: root/pkgs/development/python2-modules
diff options
context:
space:
mode:
authorRobert Schütz <nix@dotlambda.de>2022-12-03 16:51:55 -0800
committerRobert Schütz <nix@dotlambda.de>2022-12-03 18:57:20 -0800
commit1d3f70b5fb9935eaa6c58fc71d3769f85c712217 (patch)
tree1a5d913bbbbb6e6a0be0dade3a02e45fd45cdb45 /pkgs/development/python2-modules
parent53013ae601d744e100b4bc7b1309368fcceb85fa (diff)
downloadnixlib-1d3f70b5fb9935eaa6c58fc71d3769f85c712217.tar
nixlib-1d3f70b5fb9935eaa6c58fc71d3769f85c712217.tar.gz
nixlib-1d3f70b5fb9935eaa6c58fc71d3769f85c712217.tar.bz2
nixlib-1d3f70b5fb9935eaa6c58fc71d3769f85c712217.tar.lz
nixlib-1d3f70b5fb9935eaa6c58fc71d3769f85c712217.tar.xz
nixlib-1d3f70b5fb9935eaa6c58fc71d3769f85c712217.tar.zst
nixlib-1d3f70b5fb9935eaa6c58fc71d3769f85c712217.zip
python2Packages.httpretty: remove
Diffstat (limited to 'pkgs/development/python2-modules')
-rw-r--r--pkgs/development/python2-modules/httpretty/default.nix52
1 files changed, 0 insertions, 52 deletions
diff --git a/pkgs/development/python2-modules/httpretty/default.nix b/pkgs/development/python2-modules/httpretty/default.nix
deleted file mode 100644
index 92ed5c6616e0..000000000000
--- a/pkgs/development/python2-modules/httpretty/default.nix
+++ /dev/null
@@ -1,52 +0,0 @@
-{ lib
-, buildPythonPackage
-, fetchPypi
-, tornado
-, requests
-, httplib2
-, sure
-, nose
-, nose-exclude
-, coverage
-, rednose
-, nose-randomly
-, six
-, mock
-}:
-
-buildPythonPackage rec {
-  pname = "httpretty";
-  version = "0.9.7";
-
-  # drop this for version > 0.9.7
-  # Flaky tests: https://github.com/gabrielfalcao/HTTPretty/pull/394
-  doCheck = lib.versionAtLeast version "0.9.8";
-
-  src = fetchPypi {
-    inherit pname version;
-    sha256 = "66216f26b9d2c52e81808f3e674a6fb65d4bf719721394a1a9be926177e55fbe";
-  };
-
-  propagatedBuildInputs = [ six ];
-
-  checkInputs = [ nose sure coverage mock rednose
-    # Following not declared in setup.py
-    nose-randomly requests tornado httplib2 nose-exclude
-  ];
-
-  __darwinAllowLocalNetworking = true;
-
-  # Those flaky tests are failing intermittently on all platforms
-  NOSE_EXCLUDE = 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 lib; {
-    homepage = "https://httpretty.readthedocs.org/";
-    description = "HTTP client request mocking tool";
-    license = licenses.mit;
-  };
-}