0d9fc34957
GitOrigin-RevId: 5ed481943351e9fd354aeb557679624224de38d5
20 lines
437 B
Nix
20 lines
437 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "texttable";
|
|
version = "1.6.7";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "sha256-KQNI+2f3dGkxvN/VWsdYTs1OWwhGqxZDM/B5SxIXYPI=";
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "A module to generate a formatted text table, using ASCII characters";
|
|
homepage = "https://github.com/foutaise/texttable";
|
|
license = licenses.lgpl2;
|
|
};
|
|
}
|