1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5}:
6
7buildPythonPackage rec {
8 pname = "colorclass";
9 version = "2.2.2";
10 format = "setuptools";
11
12 src = fetchPypi {
13 inherit pname version;
14 sha256 = "6d4fe287766166a98ca7bc6f6312daf04a0481b1eda43e7173484051c0ab4366";
15 };
16
17 # No tests in archive
18 doCheck = false;
19
20 meta = with lib; {
21 homepage = "https://github.com/Robpol86/colorclass";
22 license = licenses.mit;
23 description = "Automatic support for console colors";
24 };
25}