about summary refs log tree commit diff
path: root/pkgs/development/python-modules/httpbin/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/httpbin/default.nix')
-rw-r--r--pkgs/development/python-modules/httpbin/default.nix6
1 files changed, 5 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/httpbin/default.nix b/pkgs/development/python-modules/httpbin/default.nix
index 72917fdd771b..d11d6b3668f6 100644
--- a/pkgs/development/python-modules/httpbin/default.nix
+++ b/pkgs/development/python-modules/httpbin/default.nix
@@ -5,7 +5,8 @@
 , markupsafe
 , decorator
 , itsdangerous
-, six }:
+, six
+}:
 
 buildPythonPackage rec {
   pname = "httpbin";
@@ -19,6 +20,9 @@ buildPythonPackage rec {
 
   propagatedBuildInputs = [ flask markupsafe decorator itsdangerous six ];
 
+  # No tests
+  doCheck = false;
+
   meta = with stdenv.lib; {
     homepage = https://github.com/kennethreitz/httpbin;
     description = "HTTP Request & Response Service";