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