depot/third_party/nixpkgs/pkgs/development/python-modules/prettytable/default.nix
Default email 5ca88bfbb9 Project import generated by Copybara.
GitOrigin-RevId: 9f918d616c5321ad374ae6cb5ea89c9e04bf3e58
2024-07-31 10:19:44 +00:00

48 lines
983 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
hatch-vcs,
hatchling,
pytest-lazy-fixtures,
pytestCheckHook,
pythonOlder,
wcwidth,
}:
buildPythonPackage rec {
pname = "prettytable";
version = "3.10.1";
format = "pyproject";
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "jazzband";
repo = "prettytable";
rev = "refs/tags/${version}";
hash = "sha256-S23nUCA2WTxnCKKKFrtN9HYjP0SHUBPPsVNAc4SYlVg=";
};
nativeBuildInputs = [
hatch-vcs
hatchling
];
propagatedBuildInputs = [ wcwidth ];
nativeCheckInputs = [
pytest-lazy-fixtures
pytestCheckHook
];
pythonImportsCheck = [ "prettytable" ];
meta = with lib; {
description = "Display tabular data in a visually appealing ASCII table format";
homepage = "https://github.com/jazzband/prettytable";
changelog = "https://github.com/jazzband/prettytable/releases/tag/${version}";
license = licenses.bsd3;
maintainers = [ ];
};
}