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