1{ lib, fetchPypi, buildPythonPackage }:
2
3buildPythonPackage rec {
4 pname = "colorama";
5 version = "0.4.4";
6
7 src = fetchPypi {
8 inherit pname version;
9 sha256 = "5941b2b48a20143d2267e95b1c2a7603ce057ee39fd88e7329b0c292aa16869b";
10 };
11
12 # No tests in archive
13 doCheck = false;
14
15 meta = with lib; {
16 homepage = "https://github.com/tartley/colorama";
17 license = licenses.bsd3;
18 description = "Cross-platform colored terminal text";
19 };
20}
21