bcb2f287e1
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
29 lines
604 B
Nix
29 lines
604 B
Nix
{
|
|
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 = with lib; {
|
|
description = "Simple Python library for easily displaying tabular data in a visually appealing ASCII table format";
|
|
homepage = "https://github.com/smeggingsmegger/VeryPrettyTable";
|
|
license = licenses.free;
|
|
};
|
|
}
|