From 4912c68aca2ecd7f9950ab7d23d21703e1c0276e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Luis=20Lafuente?= Date: Mon, 4 Sep 2017 11:49:51 +0200 Subject: [PATCH] mcomix: Disable test suite for now Regression introduced by 94351197cd40d7e2d22e8a971e888b8333764cb5 Exactly the same problem (and solution) that here: bd2aeb4883176554214bdf2af404b88eb09d83fa --- pkgs/applications/graphics/mcomix/default.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/applications/graphics/mcomix/default.nix b/pkgs/applications/graphics/mcomix/default.nix index 20c01f77bbf..318c2caee6f 100644 --- a/pkgs/applications/graphics/mcomix/default.nix +++ b/pkgs/applications/graphics/mcomix/default.nix @@ -11,6 +11,10 @@ python27Packages.buildPythonApplication rec { propagatedBuildInputs = with python27Packages; [ pygtk pillow ]; + postPatch = '' + sed -i -e '/test_suite/d' setup.py + ''; + meta = { description = "Image viewer designed to handle comic books";