pythonPackages.urwid: disable tests

This commit is contained in:
Jonathan Ringer 2020-08-23 10:29:20 -07:00 committed by Jon
parent c4ef188cae
commit b89ac20dfe

View file

@ -1,4 +1,4 @@
{ stdenv, buildPythonPackage, fetchPypi, glibcLocales }:
{ stdenv, buildPythonPackage, isPy3k, fetchPypi, glibcLocales }:
buildPythonPackage rec {
pname = "urwid";
@ -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";