aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/development/python-modules/texttable/default.nix
blob: a8c20a0eeaca1601477092cc32b9abcc814606ed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ lib
, buildPythonPackage
, fetchPypi
}:

buildPythonPackage rec {
  pname = "texttable";
  version = "1.6.2";

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

  meta = with lib; {
    description = "A module to generate a formatted text table, using ASCII characters";
    homepage = "https://github.com/foutaise/texttable";
    license = licenses.lgpl2;
  };
}