parent
16e71256fb
commit
59d8ee790e
37
pkgs/development/python-modules/prettytable/1.nix
Normal file
37
pkgs/development/python-modules/prettytable/1.nix
Normal file
@ -0,0 +1,37 @@
|
||||
{ stdenv
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, glibcLocales
|
||||
, setuptools_scm
|
||||
, wcwidth
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "prettytable";
|
||||
version = "1.0.1";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "0wcpp1nkicrswb353yn6xd2x535cpif62nw5rgz33c1wj0wzbdvb";
|
||||
};
|
||||
|
||||
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/";
|
||||
license = licenses.bsd3;
|
||||
};
|
||||
|
||||
}
|
@ -4780,7 +4780,10 @@ in {
|
||||
|
||||
pretend = callPackage ../development/python-modules/pretend { };
|
||||
|
||||
prettytable = callPackage ../development/python-modules/prettytable { };
|
||||
prettytable = if isPy3k then
|
||||
callPackage ../development/python-modules/prettytable { }
|
||||
else
|
||||
callPackage ../development/python-modules/prettytable/1.nix { };
|
||||
|
||||
priority = callPackage ../development/python-modules/priority { };
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user