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

buildPythonPackage rec {
  pname = "terminaltables";
  version = "3.1.10";
  format = "setuptools";

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

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