1{ lib
2, buildPythonPackage
3, fetchPypi
4}:
5
6buildPythonPackage rec {
7 pname = "texttable";
8 version = "1.6.3";
9
10 src = fetchPypi {
11 inherit pname version;
12 sha256 = "ce0faf21aa77d806bbff22b107cc22cce68dc9438f97a2df32c93e9afa4ce436";
13 };
14
15 meta = with lib; {
16 description = "A module to generate a formatted text table, using ASCII characters";
17 homepage = "https://github.com/foutaise/texttable";
18 license = licenses.lgpl2;
19 };
20}