pythonPackages.urwid: disable tests
This commit is contained in:
parent
c4ef188cae
commit
b89ac20dfe
@ -1,4 +1,4 @@
|
|||||||
{ stdenv, buildPythonPackage, fetchPypi, glibcLocales }:
|
{ stdenv, buildPythonPackage, isPy3k, fetchPypi, glibcLocales }:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "urwid";
|
pname = "urwid";
|
||||||
@ -13,6 +13,11 @@ buildPythonPackage rec {
|
|||||||
LC_ALL = "en_US.UTF-8";
|
LC_ALL = "en_US.UTF-8";
|
||||||
checkInputs = [ glibcLocales ];
|
checkInputs = [ glibcLocales ];
|
||||||
|
|
||||||
|
# tests which assert on strings don't decode results correctly
|
||||||
|
doCheck = isPy3k;
|
||||||
|
|
||||||
|
pythonImportsCheck = [ "urwid" ];
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "A full-featured console (xterm et al.) user interface library";
|
description = "A full-featured console (xterm et al.) user interface library";
|
||||||
homepage = "http://excess.org/urwid";
|
homepage = "http://excess.org/urwid";
|
||||||
|
Loading…
Reference in New Issue
Block a user