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