nixpkgs/pkgs/development/python-modules/ansi2html/default.nix

24 lines
626 B
Nix
Raw Normal View History

2019-10-05 14:59:58 +03:00
{ lib, buildPythonPackage, fetchPypi, isPy3k, six, mock, nose, setuptools }:
buildPythonPackage rec {
pname = "ansi2html";
version = "1.6.0";
2019-10-05 14:59:58 +03:00
src = fetchPypi {
inherit pname version;
sha256 = "0f124ea7efcf3f24f1f9398e527e688c9ae6eab26b0b84e1299ef7f94d92c596";
2019-10-05 14:59:58 +03:00
};
propagatedBuildInputs = [ six setuptools ];
checkInputs = [ mock nose ];
meta = with lib; {
description = "Convert text with ANSI color codes to HTML";
homepage = "https://github.com/ralphbean/ansi2html";
2019-10-05 14:59:58 +03:00
license = licenses.lgpl3Plus;
maintainers = with maintainers; [ davidtwco ];
platforms = platforms.all;
};
}