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

buildPythonPackage rec {
  pname = "colorama";
  version = "0.3.9";

  src = fetchPypi {
    inherit pname version;
    sha256 = "1wd1szk0z3073ghx26ynw43gnc140ibln1safgsis6s6z3s25ss8";
  };

  # No tests in archive
  doCheck = false;

  meta = with stdenv.lib; {
    homepage = https://github.com/tartley/colorama;
    license = licenses.bsd3;
    description = "Cross-platform colored terminal text";
  };
}