about summary refs log tree commit diff
path: root/pkgs/development/python-modules/httpretty
diff options
context:
space:
mode:
authorRenaud <c0bw3b@users.noreply.github.com>2019-05-15 13:17:05 +0200
committerGitHub <noreply@github.com>2019-05-15 13:17:05 +0200
commitc912002f2c16f2247e143373d9f98eb35bf06b97 (patch)
tree5cb538c6be1daafc6037b5b8955f45e7ab7f71d1 /pkgs/development/python-modules/httpretty
parentb0c2352a30c54e3886142b1ac693b090a410e571 (diff)
pythonPackages.httpretty: fix build on aarch64 (#61516)
tests.functional.test_httplib2.test_callback_response
keeps failing on Hydra
+ update meta.homepage
Diffstat (limited to 'pkgs/development/python-modules/httpretty')
-rw-r--r--pkgs/development/python-modules/httpretty/default.nix13
1 files changed, 8 insertions, 5 deletions
diff --git a/pkgs/development/python-modules/httpretty/default.nix b/pkgs/development/python-modules/httpretty/default.nix
index 1bcf892cbf476..0f61fd6d516b4 100644
--- a/pkgs/development/python-modules/httpretty/default.nix
+++ b/pkgs/development/python-modules/httpretty/default.nix
@@ -6,6 +6,7 @@
 , httplib2
 , sure
 , nose
+, nose-exclude
 , coverage
 , certifi
 , urllib3
@@ -24,18 +25,20 @@ buildPythonPackage rec {
     sha256 = "01b52d45077e702eda491f4fe75328d3468fd886aed5dcc530003e7b2b5939dc";
   };
 
+  propagatedBuildInputs = [ six ];
+
   checkInputs = [ nose sure coverage mock rednose
-  # Following not declared in setup.py
-    nose-randomly requests tornado httplib2
+    # Following not declared in setup.py
+    nose-randomly requests tornado httplib2 nose-exclude
   ];
-  propagatedBuildInputs = [ six ];
 
   __darwinAllowLocalNetworking = true;
 
+  NOSE_EXCLUDE = stdenv.lib.optionalString (stdenv.isAarch64) "tests.functional.test_httplib2.test_callback_response";
+
   meta = with stdenv.lib; {
-    homepage = "https://falcao.it/HTTPretty/";
+    homepage = "https://httpretty.readthedocs.org/";
     description = "HTTP client request mocking tool";
     license = licenses.mit;
   };
-
 }