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

buildPythonPackage rec {
  pname = "ansicolors";
  version = "1.0.2";
  name = "${pname}-${version}";

  src = fetchPypi {
    inherit pname version;
    sha256 = "02lmh2fbqcwr98cq13l9ql0fvyad1dcb3ap3c5xq9qwjp45m6r3n";
  };

  meta = with stdenv.lib; {
    homepage = "https://github.com/verigak/colors/";
    description = "ANSI colors for Python";
    license = licenses.isc;
    maintainers = with maintainers; [ copumpkin ];
  };
}