lol

python311Packages.prettytable: 3.5.0 -> 3.8.0

Diff: jazzband/prettytable@refs/tags/3.5.0...3.8.0

Changelog: https://github.com/jazzband/prettytable/releases/tag/3.8.0

+6 -9
+6 -9
pkgs/development/python-modules/prettytable/default.nix
··· 1 1 { lib 2 2 , buildPythonPackage 3 3 , fetchFromGitHub 4 - , pythonOlder 5 4 , hatch-vcs 6 5 , hatchling 7 - , wcwidth 8 - , importlib-metadata 9 6 , pytest-lazy-fixture 10 7 , pytestCheckHook 8 + , pythonOlder 9 + , wcwidth 11 10 }: 12 11 13 12 buildPythonPackage rec { 14 13 pname = "prettytable"; 15 - version = "3.5.0"; 14 + version = "3.8.0"; 16 15 format = "pyproject"; 17 16 18 - disabled = pythonOlder "3.7"; 17 + disabled = pythonOlder "3.8"; 19 18 20 19 src = fetchFromGitHub { 21 20 owner = "jazzband"; 22 21 repo = "prettytable"; 23 22 rev = "refs/tags/${version}"; 24 - hash= "sha256-J6oWNug2MEkUZSi67mM5H/Nf4tdSTB/ku34plp1XWCM="; 23 + hash= "sha256-JnxUjUosQJgprIbA9szSfw1Fi21Qc4WljoRAQv4x5YM="; 25 24 }; 26 25 27 26 SETUPTOOLS_SCM_PRETEND_VERSION = version; ··· 33 32 34 33 propagatedBuildInputs = [ 35 34 wcwidth 36 - ] ++ lib.optionals (pythonOlder "3.8") [ 37 - importlib-metadata 38 35 ]; 39 36 40 37 nativeCheckInputs = [ ··· 47 44 ]; 48 45 49 46 meta = with lib; { 50 - changelog = "https://github.com/jazzband/prettytable/releases/tag/${version}"; 51 47 description = "Display tabular data in a visually appealing ASCII table format"; 52 48 homepage = "https://github.com/jazzband/prettytable"; 49 + changelog = "https://github.com/jazzband/prettytable/releases/tag/${version}"; 53 50 license = licenses.bsd3; 54 51 maintainers = with maintainers; [ ]; 55 52 };