Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib 2, buildPythonPackage 3, fetchPypi 4}: 5 6buildPythonPackage rec { 7 pname = "texttable"; 8 version = "1.6.7"; 9 10 src = fetchPypi { 11 inherit pname version; 12 hash = "sha256-KQNI+2f3dGkxvN/VWsdYTs1OWwhGqxZDM/B5SxIXYPI="; 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}