python3Packages.prettytable: 3.16.0 -> 3.17.0

Diff: https://github.com/jazzband/prettytable/compare/3.16.0...3.17.0

Changelog: https://github.com/jazzband/prettytable/releases/tag/3.17.0
This commit is contained in:
Robert Schütz
2025-11-15 10:34:08 -08:00
parent ffa908d711
commit d3e774bf59
@@ -11,22 +11,20 @@
wcwidth,
# tests
coverage,
pytest-cov-stub,
pytest-lazy-fixtures,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "prettytable";
version = "3.16.0";
version = "3.17.0";
pyproject = true;
src = fetchFromGitHub {
owner = "jazzband";
repo = "prettytable";
tag = version;
hash = "sha256-2x7Q1HiCACJfbgWkczy3dS+dkE1fUqJK4LtqB9f3CzY=";
hash = "sha256-MvKa6M2kfD3rUl+kxsD87ieBzmDtahoMQJUNWsofCBc=";
};
build-system = [
@@ -37,8 +35,6 @@ buildPythonPackage rec {
dependencies = [ wcwidth ];
nativeCheckInputs = [
coverage
pytest-cov-stub
pytest-lazy-fixtures
pytestCheckHook
];