1{ lib
2, buildPythonPackage
3, fetchPypi
4, termcolor
5, colorama
6}:
7
8buildPythonPackage rec {
9 pname = "veryprettytable";
10 version = "0.8.1";
11
12 src = fetchPypi {
13 inherit pname version;
14 sha256 = "1k1rifz8x6qcicmx2is9vgxcj0qb2f5pvzrp7zhmvbmci3yack3f";
15 };
16
17 propagatedBuildInputs = [ termcolor colorama ];
18
19 meta = with lib; {
20 description = "A simple Python library for easily displaying tabular data in a visually appealing ASCII table format";
21 homepage = "https://github.com/smeggingsmegger/VeryPrettyTable";
22 license = licenses.free;
23 };
24
25}