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

buildPythonPackage rec {
  pname = "ansicolor";
  version = "0.2.6";

  src = fetchPypi {
    inherit pname version;
    sha256 = "d17e1b07b9dd7ded31699fbca53ae6cd373584f9b6dcbc124d1f321ebad31f1d";
  };

  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 ];
  };
}