1{ lib
2, buildPythonPackage
3, fetchPypi
4, nose
5}:
6
7buildPythonPackage rec {
8 version = "0.8.2";
9 pname = "tabulate";
10
11 src = fetchPypi {
12 inherit pname version;
13 sha256 = "e4ca13f26d0a6be2a2915428dc21e732f1e44dad7f76d7030b2ef1ec251cf7f2";
14 };
15
16 checkInputs = [ nose ];
17
18 # Tests: cannot import common (relative import).
19 doCheck = false;
20
21 meta = {
22 description = "Pretty-print tabular data";
23 homepage = https://bitbucket.org/astanin/python-tabulate;
24 license = lib.licenses.mit;
25 maintainers = with lib.maintainers; [ fridh ];
26 };
27}