blob: e7b633e420a2e72c1f44c186a7a76d4e4ddb960b (
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
fetchpatch,
# build-system
setuptools,
# dependencies
sphinx,
}:
buildPythonPackage rec {
pname = "hieroglyph";
version = "2.1.0";
src = fetchFromGitHub {
owner = "nyergler";
repo = "hieroglyph";
tag = "hieroglyph-${version}";
hash = "sha256-nr5cHF0Lg2mjQvnOoM5HCmMUiGh1QOeTD0nc8BvCBOE=";
};
pyproject = true;
build-system = [ setuptools ];
patches = [
# https://github.com/nyergler/hieroglyph/pull/177hieroglyph-quickstart
(fetchpatch {
name = "hieroglyph-upgrade-versioneer";
url = "https://github.com/nyergler/hieroglyph/commit/9cebee269ac10964b2436c0204156b7bd620a3d4.patch";
hash = "sha256-ZvU7uASU727/NUAW8I7k9idzMpEdnuwRshdHm2/GQ3w=";
})
# https://github.com/nyergler/hieroglyph/pull/174
(fetchpatch {
name = "hieroglyph-slide-builder-type-error";
url = "https://github.com/nyergler/hieroglyph/pull/174/commits/d75c550f797e3635d33db11f50968755288962a7.patch";
hash = "sha256-qNQVgWL9jy0cwtxKUbWi3Qc77RU2H3raN0BzBjDk9C8=";
})
];
# load_additional_themes has been deprecated, need to use its deprecated name
postPatch = ''
substituteInPlace src/hieroglyph/builder.py \
--replace-fail "theme_factory.load_additional_themes" "theme_factory._load_additional_themes"
'';
dependencies = [
setuptools
sphinx
];
pythonImportsCheck = [ "hieroglyph" ];
# all tests fail; don't know why:
# test_absolute_paths_made_relative (hieroglyph.tests.test_path_fixing.PostProcessImageTests) ... ERROR
doCheck = false;
meta = {
description = "Generate HTML presentations from plain text sources";
homepage = "https://github.com/nyergler/hieroglyph/";
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ juliendehos ];
};
}
|