python3Packages.prettytable: 3.16.0 -> 3.17.0 (#462002)

This commit is contained in:
dotlambda
2025-11-16 03:45:20 +00:00
committed by GitHub

View File

@@ -11,22 +11,20 @@
wcwidth, wcwidth,
# tests # tests
coverage,
pytest-cov-stub,
pytest-lazy-fixtures, pytest-lazy-fixtures,
pytestCheckHook, pytestCheckHook,
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "prettytable"; pname = "prettytable";
version = "3.16.0"; version = "3.17.0";
pyproject = true; pyproject = true;
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "jazzband"; owner = "jazzband";
repo = "prettytable"; repo = "prettytable";
tag = version; tag = version;
hash = "sha256-2x7Q1HiCACJfbgWkczy3dS+dkE1fUqJK4LtqB9f3CzY="; hash = "sha256-MvKa6M2kfD3rUl+kxsD87ieBzmDtahoMQJUNWsofCBc=";
}; };
build-system = [ build-system = [
@@ -37,8 +35,6 @@ buildPythonPackage rec {
dependencies = [ wcwidth ]; dependencies = [ wcwidth ];
nativeCheckInputs = [ nativeCheckInputs = [
coverage
pytest-cov-stub
pytest-lazy-fixtures pytest-lazy-fixtures
pytestCheckHook pytestCheckHook
]; ];