From 19629c48920b086137595a51317123ac0b17f11c Mon Sep 17 00:00:00 2001 From: Peter Marheine Date: Sun, 12 Feb 2017 08:13:49 +0000 Subject: [PATCH] zerobin: disable tests because it doesn't have any It does however contain a copy of cherrypy that doesn't get installed, which fails tests when it tries to import from cherrypy and gets imports from the version provided by Nix (which is probably not the same one as is having its tests run). --- pkgs/top-level/python-packages.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index f8f0fe11262..fd4d996d058 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -31286,6 +31286,9 @@ EOF lockfile clize ]; + # zerobin doesn't have any tests, but includes a copy of cherrypy which + # can wrongly fail the check phase. + doCheck = false; meta = { description = "A client side encrypted pastebin"; homepage = "http://0bin.net/";