1{ lib
2, buildPythonPackage
3, fetchPypi
4, nose
5}:
6
7buildPythonPackage rec {
8 version = "0.8.10";
9 pname = "tabulate";
10
11 src = fetchPypi {
12 inherit pname version;
13 sha256 = "sha256-bFfz8916wngncBVfOtstsLGiaWN+QvJ1mZJeZLEU9Rk=";
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://github.com/astanin/python-tabulate";
24 license = lib.licenses.mit;
25 maintainers = with lib.maintainers; [ fridh ];
26 };
27}