1{ stdenv, buildPythonPackage, fetchPypi }:
2
3buildPythonPackage rec {
4 pname = "ansicolors";
5 version = "1.0.2";
6 name = "${pname}-${version}";
7
8 src = fetchPypi {
9 inherit pname version;
10 sha256 = "02lmh2fbqcwr98cq13l9ql0fvyad1dcb3ap3c5xq9qwjp45m6r3n";
11 };
12
13 meta = with stdenv.lib; {
14 homepage = https://github.com/verigak/colors/;
15 description = "ANSI colors for Python";
16 license = licenses.isc;
17 maintainers = with maintainers; [ copumpkin ];
18 };
19}