Merge pull request #197660 from marsam/update-colorama

python310Packages.colorama: 0.4.5 -> 0.4.6
This commit is contained in:
Mario Rodas 2022-10-28 00:21:22 -05:00 committed by GitHub
commit e841aeedc6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,24 +1,26 @@
{ lib, fetchPypi, buildPythonPackage }:
{ lib, fetchPypi, buildPythonPackage, hatchling, pytestCheckHook }:
buildPythonPackage rec {
pname = "colorama";
version = "0.4.5";
version = "0.4.6";
format = "pyproject";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-5sa0M0/FCYimOdm5iqQpoLV9puF7mkTwRR+TC2lnt6Q=";
sha256 = "08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44";
};
# No tests in archive
doCheck = false;
nativeBuildInputs = [ hatchling ];
checkInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "colorama" ];
meta = with lib; {
description = "Cross-platform colored terminal text";
homepage = "https://github.com/tartley/colorama";
changelog = "https://github.com/tartley/colorama/raw/${version}/CHANGELOG.rst";
license = licenses.bsd3;
maintainers = with maintainers; [ ];
};
}