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

buildPythonPackage rec {
  pname = "termcolor";
  version = "1.1.0";

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

  meta = with lib; {
    description = "Termcolor";
    homepage = "https://pypi.python.org/pypi/termcolor";
    license = licenses.mit;
  };

}