nixpkgs/pkgs/development/python-modules/terminaltables/default.nix
2021-01-25 18:31:47 +01:00

22 lines
426 B
Nix

{ 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;
};
}