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

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

  src = fetchPypi {
    inherit pname version;
    sha256 = "5941b2b48a20143d2267e95b1c2a7603ce057ee39fd88e7329b0c292aa16869b";
  };

  # No tests in archive
  doCheck = false;

  pythonImportsCheck = [ "colorama" ];

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