blob: 9c2399d5e161427904d4f017c3c484aa794a6cc5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
{
lib,
fetchPypi,
buildPythonPackage,
hatchling,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "colorama";
version = "0.4.6";
pyproject = true;
src = fetchPypi {
inherit pname version;
sha256 = "08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44";
};
nativeBuildInputs = [ hatchling ];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "colorama" ];
meta = {
description = "Cross-platform colored terminal text";
homepage = "https://github.com/tartley/colorama";
changelog = "https://github.com/tartley/colorama/raw/${version}/CHANGELOG.rst";
license = lib.licenses.bsd3;
maintainers = [ ];
};
}
|