Skip to content

Commit

Permalink
pythonPackages.urwid: disable tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonathan Ringer committed Aug 24, 2020
1 parent c4ef188 commit b89ac20
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion pkgs/development/python-modules/urwid/default.nix
@@ -1,4 +1,4 @@
{ stdenv, buildPythonPackage, fetchPypi, glibcLocales }:
{ stdenv, buildPythonPackage, isPy3k, fetchPypi, glibcLocales }:

buildPythonPackage rec {
pname = "urwid";
Expand All @@ -13,6 +13,11 @@ buildPythonPackage rec {
LC_ALL = "en_US.UTF-8";
checkInputs = [ glibcLocales ];

# tests which assert on strings don't decode results correctly
doCheck = isPy3k;

pythonImportsCheck = [ "urwid" ];

meta = with stdenv.lib; {
description = "A full-featured console (xterm et al.) user interface library";
homepage = "http://excess.org/urwid";
Expand Down

0 comments on commit b89ac20

Please sign in to comment.