python37Packages.prettytable: fix build

This commit is contained in:
Jonathan Ringer 2020-11-29 14:33:52 -08:00 committed by Frederik Rietdijk
parent 72ee790f5d
commit b59209334a

View file

@ -2,6 +2,8 @@
, buildPythonPackage
, fetchPypi
, glibcLocales
, setuptools_scm
, wcwidth
}:
buildPythonPackage rec {
@ -13,12 +15,19 @@ buildPythonPackage rec {
sha256 = "e37acd91976fe6119172771520e58d1742c8479703489321dc1d9c85e7259922";
};
nativeBuildInputs = [ setuptools_scm ];
buildInputs = [ glibcLocales ];
propagatedBuildInputs = [ wcwidth ];
preCheck = ''
export LANG="en_US.UTF-8"
'';
# no test no longer available in pypi package
doCheck = false;
pythonImportsCheck = [ "prettytable" ];
meta = with stdenv.lib; {
description = "Simple Python library for easily displaying tabular data in a visually appealing ASCII table format";
homepage = "http://code.google.com/p/prettytable/";