blob: dcb05ed422453c873eecdb64dc417e255a68ef80 (
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
41
42
43
44
45
|
{
lib,
buildPythonPackage,
fetchPypi,
setuptools,
ansi2html,
libtmux,
weasyprint,
dataclass-wizard,
}:
buildPythonPackage rec {
pname = "presenterm-export";
version = "0.2.7";
pyproject = true;
src = fetchPypi {
pname = "presenterm_export";
inherit version;
hash = "sha256-9TkZ52lA1l3PYs2DTgji0LDrG5kixnFffuMIfhILY1E=";
};
pythonRelaxDeps = true;
build-system = [
setuptools
];
dependencies = [
ansi2html
libtmux
weasyprint
dataclass-wizard
];
pythonImportsCheck = [ "presenterm_export" ];
meta = {
description = "PDF exporter for presenterm";
homepage = "https://github.com/mfontanini/presenterm-export";
changelog = "https://github.com/mfontanini/presenterm-export/releases/tag/v${version}";
license = lib.licenses.bsd2;
maintainers = with lib.maintainers; [ shivaraj-bh ];
};
}
|