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