about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/colorclass/default.nix
blob: 4a627cab5451aa480a85c68a8367c3f04338a0c9 (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";
  };
}