2021-01-25 08:26:54 +00:00
|
|
|
{ lib
|
2018-10-29 15:48:50 +00:00
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
, termcolor
|
|
|
|
, colorama
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "veryprettytable";
|
|
|
|
version = "0.8.1";
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
|
|
|
sha256 = "1k1rifz8x6qcicmx2is9vgxcj0qb2f5pvzrp7zhmvbmci3yack3f";
|
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ termcolor colorama ];
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2018-10-29 15:48:50 +00:00
|
|
|
description = "A simple Python library for easily displaying tabular data in a visually appealing ASCII table format";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/smeggingsmegger/VeryPrettyTable";
|
2018-10-29 15:48:50 +00:00
|
|
|
license = licenses.free;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|