depot/third_party/nixpkgs/pkgs/development/python-modules/ansitable/default.nix
Default email f34ce41345 Project import generated by Copybara.
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
2024-07-27 08:49:29 +02:00

44 lines
834 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
pythonOlder,
setuptools,
colored,
pytestCheckHook,
numpy,
}:
buildPythonPackage rec {
pname = "ansitable";
version = "0.10.0";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-ehPPpZ9C/Nrly9WoJJfZtv2YfZ9MEcQsKtuxNpcJe7U=";
};
nativeBuildInputs = [ setuptools ];
propagatedBuildInputs = [ colored ];
pythonImportsCheck = [ "ansitable" ];
nativeCheckInputs = [
pytestCheckHook
numpy
];
meta = with lib; {
description = "Quick and easy display of tabular data and matrices with optional ANSI color and borders";
homepage = "https://pypi.org/project/ansitable/";
license = licenses.mit;
maintainers = with maintainers; [
djacu
a-camarillo
];
};
}