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