mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-04-14 11:47:45 +00:00
Merge pull request #197660 from marsam/update-colorama
python310Packages.colorama: 0.4.5 -> 0.4.6
This commit is contained in:
commit
e841aeedc6
@ -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; [ ];
|
||||
};
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user