summary refs log tree commit diff
path: root/pkgs/development/python-modules/terminaltables/default.nix
blob: 51a0b0712240b6ae978dc9fbafa4ba62dfb3c22a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ lib
, buildPythonPackage
, fetchPypi
}:

buildPythonPackage rec {
  pname = "terminaltables";
  version = "3.1.0";

  src = fetchPypi {
    inherit pname version;
    sha256 = "f3eb0eb92e3833972ac36796293ca0906e998dc3be91fbe1f8615b331b853b81";
  };

  meta = with lib; {
    description = "Display simple tables in terminals";
    homepage = "https://github.com/Robpol86/terminaltables";
    license = licenses.mit;
  };

}