about summary refs log tree commit diff
path: root/pkgs/applications/misc
diff options
context:
space:
mode:
authorMaximilian Bosch <maximilian@mbosch.me>2020-03-13 20:44:00 +0100
committerMaximilian Bosch <maximilian@mbosch.me>2020-03-13 20:59:53 +0100
commit1505633e2f818c4dc9f0d36bffff2f2c3b31c987 (patch)
treeb6e62a47cf67993e4f417dc24340fb6e59ba7a27 /pkgs/applications/misc
parentc882314075b940cde585f291be5124ca810c4c8c (diff)
downloadnixlib-1505633e2f818c4dc9f0d36bffff2f2c3b31c987.tar
nixlib-1505633e2f818c4dc9f0d36bffff2f2c3b31c987.tar.gz
nixlib-1505633e2f818c4dc9f0d36bffff2f2c3b31c987.tar.bz2
nixlib-1505633e2f818c4dc9f0d36bffff2f2c3b31c987.tar.lz
nixlib-1505633e2f818c4dc9f0d36bffff2f2c3b31c987.tar.xz
nixlib-1505633e2f818c4dc9f0d36bffff2f2c3b31c987.tar.zst
nixlib-1505633e2f818c4dc9f0d36bffff2f2c3b31c987.zip
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
Diffstat (limited to 'pkgs/applications/misc')
-rw-r--r--pkgs/applications/misc/wikicurses/default.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/pkgs/applications/misc/wikicurses/default.nix b/pkgs/applications/misc/wikicurses/default.nix
index d38383c30ecb..f59384dd7d95 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/;