python3Packages.prettytable: 3.9.0 -> 3.10.1

https://github.com/jazzband/prettytable/releases/tag/3.10.1
This commit is contained in:
Martin Weinelt
2024-06-24 12:15:50 +02:00
parent 414d3567a4
commit 0164934382
@@ -4,7 +4,7 @@
fetchFromGitHub,
hatch-vcs,
hatchling,
pytest-lazy-fixture,
pytest-lazy-fixtures,
pytestCheckHook,
pythonOlder,
wcwidth,
@@ -12,7 +12,7 @@
buildPythonPackage rec {
pname = "prettytable";
version = "3.9.0";
version = "3.10.1";
format = "pyproject";
disabled = pythonOlder "3.8";
@@ -21,7 +21,7 @@ buildPythonPackage rec {
owner = "jazzband";
repo = "prettytable";
rev = "refs/tags/${version}";
hash = "sha256-yIO4eO2VdOnUt9qoNQOeq/c0os2LQ3mqAkCOIuoGpyg=";
hash = "sha256-S23nUCA2WTxnCKKKFrtN9HYjP0SHUBPPsVNAc4SYlVg=";
};
nativeBuildInputs = [
@@ -32,7 +32,7 @@ buildPythonPackage rec {
propagatedBuildInputs = [ wcwidth ];
nativeCheckInputs = [
pytest-lazy-fixture
pytest-lazy-fixtures
pytestCheckHook
];