12 buildPythonPackage rec {
17 disabled = pythonOlder "3.7";
20 inherit pname version;
21 hash = "sha256-AJWxK/WWbeUpwP6x+ghnFnGzNo7sd9fverEUviwGizw=";
29 optional-dependencies = {
30 widechars = [ wcwidth ];
35 ] ++ lib.flatten (builtins.attrValues optional-dependencies);
38 description = "Pretty-print tabular data";
39 mainProgram = "tabulate";
40 homepage = "https://github.com/astanin/python-tabulate";
41 license = lib.licenses.mit;