python37Packages.prettytable: fix build
This commit is contained in:
parent
72ee790f5d
commit
b59209334a
@ -2,6 +2,8 @@
|
|||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
, fetchPypi
|
, fetchPypi
|
||||||
, glibcLocales
|
, glibcLocales
|
||||||
|
, setuptools_scm
|
||||||
|
, wcwidth
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
@ -13,12 +15,19 @@ buildPythonPackage rec {
|
|||||||
sha256 = "e37acd91976fe6119172771520e58d1742c8479703489321dc1d9c85e7259922";
|
sha256 = "e37acd91976fe6119172771520e58d1742c8479703489321dc1d9c85e7259922";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [ setuptools_scm ];
|
||||||
buildInputs = [ glibcLocales ];
|
buildInputs = [ glibcLocales ];
|
||||||
|
|
||||||
|
propagatedBuildInputs = [ wcwidth ];
|
||||||
|
|
||||||
preCheck = ''
|
preCheck = ''
|
||||||
export LANG="en_US.UTF-8"
|
export LANG="en_US.UTF-8"
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
# no test no longer available in pypi package
|
||||||
|
doCheck = false;
|
||||||
|
pythonImportsCheck = [ "prettytable" ];
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "Simple Python library for easily displaying tabular data in a visually appealing ASCII table format";
|
description = "Simple Python library for easily displaying tabular data in a visually appealing ASCII table format";
|
||||||
homepage = "http://code.google.com/p/prettytable/";
|
homepage = "http://code.google.com/p/prettytable/";
|
||||||
|
Loading…
Reference in New Issue
Block a user