From 1505633e2f818c4dc9f0d36bffff2f2c3b31c987 Mon Sep 17 00:00:00 2001 From: Maximilian Bosch Date: Fri, 13 Mar 2020 20:44:00 +0100 Subject: [PATCH] wikicurses: fix build The package doesn't have a testsuite, but fails as the checkPhase is missing appropriate locale configuration (usually taken from `pkgs.glibcLocales`). Entirely disabling the `checkPhase` for now as it's basically a no-op. ZHF: #80379 See also https://hydra.nixos.org/build/114125176 --- pkgs/applications/misc/wikicurses/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/applications/misc/wikicurses/default.nix b/pkgs/applications/misc/wikicurses/default.nix index d38383c30ec..f59384dd7d9 100644 --- a/pkgs/applications/misc/wikicurses/default.nix +++ b/pkgs/applications/misc/wikicurses/default.nix @@ -13,6 +13,8 @@ pythonPackages.buildPythonApplication rec { propagatedBuildInputs = with pythonPackages; [ urwid beautifulsoup4 lxml ]; + doCheck = false; + meta = { description = "A simple curses interface for MediaWiki sites such as Wikipedia"; homepage = https://github.com/ids1024/wikicurses/;