python3Packages.termcolor: 2.4.0 -> 2.5.0

This commit is contained in:
Martin Weinelt
2025-01-27 10:57:38 +01:00
parent 27917dabb1
commit 438c013041
@@ -9,15 +9,15 @@
buildPythonPackage rec {
pname = "termcolor";
version = "2.4.0";
format = "pyproject";
version = "2.5.0";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-qrnlYEfIrEHteY+jbYkqN6yms+kVnz4MJLxkqbOse3o=";
hash = "sha256-mY2NJ9ptSEQujh8BYRkHa2kNliUHUx30iQ/NLbLvim8=";
};
nativeBuildInputs = [
build-system = [
hatch-vcs
hatchling
];
@@ -26,6 +26,11 @@ buildPythonPackage rec {
nativeCheckInputs = [ pytestCheckHook ];
preCheck = ''
substituteInPlace pyproject.toml \
--replace-fail ".ini_options" ""
'';
meta = with lib; {
description = "ANSI color formatting for output in terminal";
homepage = "https://github.com/termcolor/termcolor";