summary refs log tree commit diff
path: root/pkgs/development/python-modules/colorclass/default.nix
blob: b035bb9b57c97acd44fd90f85ab4b2e23f73cccd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ stdenv, buildPythonPackage, fetchPypi }:

buildPythonPackage rec {
  pname = "colorclass";
  version = "2.2.0";

  src = fetchPypi {
    inherit pname version;
    sha256 = "b05c2a348dfc1aff2d502527d78a5b7b7e2f85da94a96c5081210d8e9ee8e18b";
  };

  # No tests in archive
  doCheck = false;

  meta = with stdenv.lib; {
    homepage = https://github.com/Robpol86/colorclass;
    license = licenses.mit;
    description = "Automatic support for console colors";
  };
}