python3Packages.termcolor: 1.1.0 -> 2.0.1

This commit is contained in:
Martin Weinelt 2022-09-14 23:36:22 +02:00
parent ded5f2354d
commit 3bd6f99b3e

View File

@ -1,17 +1,34 @@
{ lib
, buildPythonPackage
, fetchPypi
, hatch-vcs
, hatchling
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "termcolor";
version = "1.1.0";
version = "2.0.1";
format = "pyproject";
src = fetchPypi {
inherit pname version;
sha256 = "1d6d69ce66211143803fbc56652b41d73b4a400a2891d7bf7a1cdf4c02de613b";
sha256 = "sha256-ayz3aekzZKJnbh3lanwM/yz1vQfzfpzICw3WMg6/44g=";
};
nativeBuildInputs = [
hatch-vcs
hatchling
];
pythonImportsCheck = [
"termcolor"
];
checkInputs = [
pytestCheckHook
];
meta = with lib; {
description = "Termcolor";
homepage = "https://pypi.python.org/pypi/termcolor";