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