about summary refs log tree commit diff
path: root/pkgs/development/python-modules/terminaltables/default.nix
blob: cb528b5b4e9abf21297a1e0b601343a0139e0b5c (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.7";

  src = fetchPypi {
    inherit pname version;
    sha256 = "5dab2f33927c0a020b8011c81b92830ff9fd4ba701657da5d7bfdc41048360a6";
  };

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

}