summary refs log tree commit diff
path: root/pkgs/development/python-modules/veryprettytable/default.nix
blob: eff996c3ae4c86e2f29d8670a1c7a2f49d64cf4e (plain) (blame)
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
{ stdenv
, buildPythonPackage
, fetchPypi
, termcolor
, colorama
}:

buildPythonPackage rec {
  pname = "veryprettytable";
  version = "0.8.1";

  src = fetchPypi {
    inherit pname version;
    sha256 = "1k1rifz8x6qcicmx2is9vgxcj0qb2f5pvzrp7zhmvbmci3yack3f";
  };

  propagatedBuildInputs = [ termcolor colorama ];

  meta = with stdenv.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;
  };

}