1{ lib
2, buildPythonPackage
3, fetchPypi
4, nose
5}:
6
7buildPythonPackage rec {
8 version = "0.8.3";
9 pname = "tabulate";
10
11 src = fetchPypi {
12 inherit pname version;
13 sha256 = "8af07a39377cee1103a5c8b3330a421c2d99b9141e9cc5ddd2e3263fea416943";
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}