My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/veryprettytable/default.nix

25 lines
565 B

{ lib
, buildPythonPackage
, fetchPypi
, termcolor
, colorama
}:
buildPythonPackage rec {
pname = "veryprettytable";
version = "0.8.1";
src = fetchPypi {
inherit pname version;
sha256 = "1k1rifz8x6qcicmx2is9vgxcj0qb2f5pvzrp7zhmvbmci3yack3f";
};
propagatedBuildInputs = [ termcolor colorama ];
meta = with lib; {
description = "A simple Python library for easily displaying tabular data in a visually appealing ASCII table format";
homepage = "https://github.com/smeggingsmegger/VeryPrettyTable";
license = licenses.free;
};
}