blob: 5afe66941c0936874c3689981f2678b15de912a7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
{ lib
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "texttable";
version = "1.6.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-KQNI+2f3dGkxvN/VWsdYTs1OWwhGqxZDM/B5SxIXYPI=";
};
meta = with lib; {
description = "A module to generate a formatted text table, using ASCII characters";
homepage = "https://github.com/foutaise/texttable";
license = licenses.lgpl2;
};
}
|