02cf88bb76
GitOrigin-RevId: c4a0efdd5a728e20791b8d8d2f26f90ac228ee8d
27 lines
548 B
Nix
27 lines
548 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, nose
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
version = "0.8.10";
|
|
pname = "tabulate";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "sha256-bFfz8916wngncBVfOtstsLGiaWN+QvJ1mZJeZLEU9Rk=";
|
|
};
|
|
|
|
checkInputs = [ nose ];
|
|
|
|
# Tests: cannot import common (relative import).
|
|
doCheck = false;
|
|
|
|
meta = {
|
|
description = "Pretty-print tabular data";
|
|
homepage = "https://github.com/astanin/python-tabulate";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [ fridh ];
|
|
};
|
|
}
|