1{ lib
2, buildPythonPackage
3, fetchPypi
4}:
5
6buildPythonPackage rec {
7 pname = "terminaltables";
8 version = "3.1.0";
9
10 src = fetchPypi {
11 inherit pname version;
12 sha256 = "f3eb0eb92e3833972ac36796293ca0906e998dc3be91fbe1f8615b331b853b81";
13 };
14
15 meta = with lib; {
16 description = "Display simple tables in terminals";
17 homepage = "https://github.com/Robpol86/terminaltables";
18 license = licenses.mit;
19 };
20
21}