{ lib , buildPythonPackage , fetchPypi , nose }: buildPythonPackage rec { version = "0.8.2"; pname = "tabulate"; src = fetchPypi { inherit pname version; sha256 = "1wpp3hjyrw9f1c1xfxkzmm6y9w9jwwhxqa2lj6if4sqadpr17jp4"; }; checkInputs = [ nose ]; # Tests: cannot import common (relative import). doCheck = false; meta = { description = "Pretty-print tabular data"; homepage = https://bitbucket.org/astanin/python-tabulate; license = lib.licenses.mit; maintainers = with lib.maintainers; [ fridh ]; }; }