blob: b252842606690e73f7a269a6972ab51595cf2158 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
{
lib,
buildPythonPackage,
fetchPypi,
pytestCheckHook,
setuptools,
setuptools-scm,
wheel,
}:
buildPythonPackage rec {
pname = "ansi2html";
version = "1.9.2";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-NFO/h1NdN7gnsFJF+qp1bbq07D1pkl41K2MZw8lVwKU=";
};
nativeBuildInputs = [
setuptools
setuptools-scm
wheel
];
preCheck = "export PATH=$PATH:$out/bin";
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "ansi2html" ];
meta = {
description = "Convert text with ANSI color codes to HTML";
mainProgram = "ansi2html";
homepage = "https://github.com/ralphbean/ansi2html";
license = lib.licenses.lgpl3Plus;
maintainers = [ ];
};
}
|