summary refs log tree commit diff
path: root/pkgs/development/python-modules/ansicolor/default.nix
blob: ca29b631f471299addcce57990f560acd6ddae77 (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 = "ansicolor";
  version = "0.2.4";
  name = "${pname}-${version}";

  src = fetchPypi {
    inherit pname version;
    sha256 = "0zlkk9706xn5yshwzdn8xsfkim8iv44zsl6qjwg2f4gn62rqky1h";
  };

  meta = with stdenv.lib; {
    homepage = https://github.com/numerodix/ansicolor/;
    description = "A library to produce ansi color output and colored highlighting and diffing";
    license = licenses.asl20;
    maintainers = with maintainers; [ andsild ];
  };
}