lol

Merge pull request #197660 from marsam/update-colorama

python310Packages.colorama: 0.4.5 -> 0.4.6

authored by

Mario Rodas and committed by
GitHub
e841aeed d4c6e918

+8 -6
+8 -6
pkgs/development/python-modules/colorama/default.nix
··· 1 - { lib, fetchPypi, buildPythonPackage }: 1 + { lib, fetchPypi, buildPythonPackage, hatchling, pytestCheckHook }: 2 2 3 3 buildPythonPackage rec { 4 4 pname = "colorama"; 5 - version = "0.4.5"; 5 + version = "0.4.6"; 6 + format = "pyproject"; 6 7 7 8 src = fetchPypi { 8 9 inherit pname version; 9 - sha256 = "sha256-5sa0M0/FCYimOdm5iqQpoLV9puF7mkTwRR+TC2lnt6Q="; 10 + sha256 = "08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44"; 10 11 }; 11 12 12 - # No tests in archive 13 - doCheck = false; 13 + nativeBuildInputs = [ hatchling ]; 14 + 15 + checkInputs = [ pytestCheckHook ]; 14 16 15 17 pythonImportsCheck = [ "colorama" ]; 16 18 17 19 meta = with lib; { 18 20 description = "Cross-platform colored terminal text"; 19 21 homepage = "https://github.com/tartley/colorama"; 22 + changelog = "https://github.com/tartley/colorama/raw/${version}/CHANGELOG.rst"; 20 23 license = licenses.bsd3; 21 24 maintainers = with maintainers; [ ]; 22 25 }; 23 26 } 24 -