nixpkgs/pkgs/development/python-modules/tabulate/default.nix

28 lines
563 B
Nix
Raw Normal View History

2017-10-29 13:44:43 +01:00
{ lib
, buildPythonPackage
, fetchPypi
, nose
}:
buildPythonPackage rec {
version = "0.8.7";
2017-10-29 13:44:43 +01:00
pname = "tabulate";
src = fetchPypi {
inherit pname version;
sha256 = "db2723a20d04bcda8522165c73eea7c300eda74e0ce852d9022e0159d7895007";
2017-10-29 13:44:43 +01:00
};
checkInputs = [ nose ];
# Tests: cannot import common (relative import).
doCheck = false;
meta = {
description = "Pretty-print tabular data";
homepage = "https://bitbucket.org/astanin/python-tabulate";
2017-10-29 13:44:43 +01:00
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ fridh ];
};
}