From d9a71f35c8e0f023477df0595258ddc674ed970a Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Mon, 1 Jul 2013 11:51:28 +0200 Subject: [PATCH] haskell-oeis: the test suite depends on network access --- pkgs/development/libraries/haskell/oeis/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/development/libraries/haskell/oeis/default.nix b/pkgs/development/libraries/haskell/oeis/default.nix index 74b355c522a..6236495a87a 100644 --- a/pkgs/development/libraries/haskell/oeis/default.nix +++ b/pkgs/development/libraries/haskell/oeis/default.nix @@ -6,6 +6,7 @@ cabal.mkDerivation (self: { sha256 = "1lp4mbsh98vnyfbnq9224n98hajv8q5prpzgbcw90bih0rbiw4w4"; buildDepends = [ HTTP network ]; testDepends = [ HUnit testFramework testFrameworkHunit ]; + doCheck = false; meta = { description = "Interface to the Online Encyclopedia of Integer Sequences (OEIS)"; license = self.stdenv.lib.licenses.bsd3;