2017-10-29 05:44:43 -07:00
|
|
|
{ lib
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
, nose
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
2021-02-20 01:09:18 -08:00
|
|
|
version = "0.8.8";
|
2017-10-29 05:44:43 -07:00
|
|
|
pname = "tabulate";
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2021-02-20 01:09:18 -08:00
|
|
|
sha256 = "26f2589d80d332fefd2371d396863dedeb806f51b54bdb4b264579270b621e92";
|
2017-10-29 05:44:43 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
checkInputs = [ nose ];
|
|
|
|
|
|
|
|
# Tests: cannot import common (relative import).
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Pretty-print tabular data";
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://bitbucket.org/astanin/python-tabulate";
|
2017-10-29 05:44:43 -07:00
|
|
|
license = lib.licenses.mit;
|
|
|
|
maintainers = with lib.maintainers; [ fridh ];
|
|
|
|
};
|
2018-02-25 23:14:56 -08:00
|
|
|
}
|