Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.09 438 B view raw
1{ lib 2, buildPythonPackage 3, fetchPypi 4}: 5 6buildPythonPackage rec { 7 pname = "texttable"; 8 version = "1.6.2"; 9 10 src = fetchPypi { 11 inherit pname version; 12 sha256 = "1x5l77akfc20x52jma9573qp8l8r07q103pm4l0pbizvh4vp1wzg"; 13 }; 14 15 meta = with lib; { 16 description = "A module to generate a formatted text table, using ASCII characters"; 17 homepage = "https://github.com/foutaise/texttable"; 18 license = licenses.lgpl2; 19 }; 20}