summary refs log tree commit diff
path: root/pkgs/development/python-modules/ansi2html/default.nix
blob: eda67e260454a4d6d251687d04539873d4355313 (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
{ lib, buildPythonPackage, fetchPypi, isPy3k, six, mock, nose, setuptools }:

buildPythonPackage rec {
  pname = "ansi2html";
  version = "1.5.2";

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

  propagatedBuildInputs = [ six setuptools ];

  checkInputs = [ mock nose ];

  meta = with lib; {
    description = "Convert text with ANSI color codes to HTML";
    homepage = "https://github.com/ralphbean/ansi2html";
    license = licenses.lgpl3Plus;
    maintainers = with maintainers; [ davidtwco ];
    platforms = platforms.all;
  };
}