depot/third_party/nixpkgs/pkgs/development/python-modules/tabulate/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

43 lines
812 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
pythonOlder,
setuptools-scm,
setuptools,
wcwidth,
pytestCheckHook,
}:
buildPythonPackage rec {
version = "0.9.0";
pname = "tabulate";
format = "pyproject";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-AJWxK/WWbeUpwP6x+ghnFnGzNo7sd9fverEUviwGizw=";
};
nativeBuildInputs = [
setuptools
setuptools-scm
];
passthru.optional-dependencies = {
widechars = [ wcwidth ];
};
nativeCheckInputs = [
pytestCheckHook
] ++ lib.flatten (builtins.attrValues passthru.optional-dependencies);
meta = {
description = "Pretty-print tabular data";
mainProgram = "tabulate";
homepage = "https://github.com/astanin/python-tabulate";
license = lib.licenses.mit;
};
}