mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-19 00:08:32 +01:00
pythonPackages.urwid: disable tests
This commit is contained in:
parent
c4ef188cae
commit
b89ac20dfe
1 changed files with 6 additions and 1 deletions
|
@ -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";
|
||||
|
|
Loading…
Reference in a new issue