lol

python313Packages.termcolor: 2.5.0 -> 3.0.0

https://github.com/termcolor/termcolor/releases/tag/3.0.0

+5 -7
+2
pkgs/development/python-modules/openai/default.nix
··· 111 111 pytestFlagsArray = [ 112 112 "-W" 113 113 "ignore::DeprecationWarning" 114 + # snapshot mismatches 115 + "--inline-snapshot=update" 114 116 ]; 115 117 116 118 disabledTests =
+3 -7
pkgs/development/python-modules/termcolor/default.nix
··· 9 9 10 10 buildPythonPackage rec { 11 11 pname = "termcolor"; 12 - version = "2.5.0"; 12 + version = "3.0.0"; 13 13 pyproject = true; 14 14 15 15 src = fetchPypi { 16 16 inherit pname version; 17 - hash = "sha256-mY2NJ9ptSEQujh8BYRkHa2kNliUHUx30iQ/NLbLvim8="; 17 + hash = "sha256-DNhVyHFjg/FSrQK7s5hB1uRpRTj/XUJAiOVsi4H95SU="; 18 18 }; 19 19 20 20 build-system = [ ··· 26 26 27 27 nativeCheckInputs = [ pytestCheckHook ]; 28 28 29 - preCheck = '' 30 - substituteInPlace pyproject.toml \ 31 - --replace-fail ".ini_options" "" 32 - ''; 33 - 34 29 meta = with lib; { 30 + changelog = "https://github.com/termcolor/termcolor/releases/tag/${version}"; 35 31 description = "ANSI color formatting for output in terminal"; 36 32 homepage = "https://github.com/termcolor/termcolor"; 37 33 license = licenses.mit;