depot/third_party/nixpkgs/pkgs/development/python-modules/terminaltables/default.nix
Default email 8ac5e011d6 Project import generated by Copybara.
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
2020-04-24 19:36:52 -04:00

21 lines
436 B
Nix

{ stdenv
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "terminaltables";
version = "3.1.0";
src = fetchPypi {
inherit pname version;
sha256 = "f3eb0eb92e3833972ac36796293ca0906e998dc3be91fbe1f8615b331b853b81";
};
meta = with stdenv.lib; {
description = "Display simple tables in terminals";
homepage = "https://github.com/Robpol86/terminaltables";
license = licenses.mit;
};
}