mastodon: 4.3.1 -> 4.3.2 (#361487)
[NixPkgs.git] / pkgs / development / python-modules / colorama / default.nix
blob901750de1fe8f4a098fca39ed48ea866915009ca
2   lib,
3   fetchPypi,
4   buildPythonPackage,
5   hatchling,
6   pytestCheckHook,
7 }:
9 buildPythonPackage rec {
10   pname = "colorama";
11   version = "0.4.6";
12   format = "pyproject";
14   src = fetchPypi {
15     inherit pname version;
16     sha256 = "08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44";
17   };
19   nativeBuildInputs = [ hatchling ];
21   nativeCheckInputs = [ pytestCheckHook ];
23   pythonImportsCheck = [ "colorama" ];
25   meta = with lib; {
26     description = "Cross-platform colored terminal text";
27     homepage = "https://github.com/tartley/colorama";
28     changelog = "https://github.com/tartley/colorama/raw/${version}/CHANGELOG.rst";
29     license = licenses.bsd3;
30     maintainers = [ ];
31   };