summary refs log tree commit diff
path: root/pkgs/development/python-modules/colored/default.nix
blob: 2d2cac3da1b93beb7697df039f545533d077f89a (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
{ stdenv
, buildPythonPackage
, fetchPypi
}:

buildPythonPackage rec {
  pname = "colored";
  version = "1.4.2";

  src = fetchPypi {
    inherit pname version;
    sha256 = "056fac09d9e39b34296e7618897ed1b8c274f98423770c2980d829fd670955ed";
  };

  # No proper test suite
  doCheck = false;

  meta = with stdenv.lib; {
    homepage = "https://gitlab.com/dslackw/colored";
    description = "Simple library for color and formatting to terminal";
    license = licenses.mit;
  };

}