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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
|
{
lib,
stdenv,
pkgs,
buildPythonPackage,
fetchFromGitHub,
fontconfig,
glib,
harfbuzz,
pango,
# build-system
flit-core,
# dependencies
cffi,
cssselect2,
fonttools,
pillow,
pydyf,
pyphen,
tinycss2,
tinyhtml5,
# tests
pytest-cov-stub,
pytestCheckHook,
replaceVars,
versionCheckHook,
writableTmpDirAsHomeHook,
}:
buildPythonPackage (finalAttrs: {
pname = "weasyprint";
version = "66.0";
pyproject = true;
__darwinAllowLocalNetworking = true;
src = fetchFromGitHub {
owner = "Kozea";
repo = "WeasyPrint";
tag = "v${finalAttrs.version}";
hash = "sha256-wmEDVEbikBpOQ5394IBPWQRjWZOLfMzEGxTtq4tt2Tw=";
};
patches = [
(replaceVars ./library-paths.patch {
fontconfig = "${fontconfig.lib}/lib/libfontconfig${stdenv.hostPlatform.extensions.sharedLibrary}";
gobject = "${glib.out}/lib/libgobject-2.0${stdenv.hostPlatform.extensions.sharedLibrary}";
harfbuzz = "${harfbuzz.out}/lib/libharfbuzz${stdenv.hostPlatform.extensions.sharedLibrary}";
harfbuzz_subset = "${harfbuzz.out}/lib/libharfbuzz-subset${stdenv.hostPlatform.extensions.sharedLibrary}";
pango = "${pango.out}/lib/libpango-1.0${stdenv.hostPlatform.extensions.sharedLibrary}";
pangoft2 = "${pango.out}/lib/libpangoft2-1.0${stdenv.hostPlatform.extensions.sharedLibrary}";
})
];
build-system = [ flit-core ];
dependencies = [
cffi
cssselect2
fonttools
pillow
pydyf
pyphen
tinycss2
tinyhtml5
]
++ fonttools.optional-dependencies.woff;
nativeCheckInputs = [
pkgs.ghostscript
pytest-cov-stub
pytestCheckHook
versionCheckHook
writableTmpDirAsHomeHook
];
disabledTests = [
# needs the Ahem font (fails on macOS)
"test_font_stretch"
# sensitive to sandbox environments
"test_linear_gradients_12"
"test_linear_gradients_5"
"test_tab_size"
"test_tabulation_character"
# rounding issues in sandbox
"test_empty_inline_auto_margins"
"test_images_transparent_text"
"test_layout_table_auto_44"
"test_layout_table_auto_45"
"test_margin_boxes_element"
"test_running_elements"
"test_vertical_align_4"
"test_visibility_1"
"test_visibility_3"
"test_visibility_4"
"test_woff_simple"
# AssertionError
"test_2d_transform"
];
FONTCONFIG_FILE = "${fontconfig.out}/etc/fonts/fonts.conf";
# Set env variable explicitly for Darwin, but allow overriding when invoking directly
makeWrapperArgs = [ "--set-default FONTCONFIG_FILE ${finalAttrs.FONTCONFIG_FILE}" ];
pythonImportsCheck = [ "weasyprint" ];
meta = {
changelog = "https://github.com/Kozea/WeasyPrint/releases/tag/${finalAttrs.src.tag}";
description = "Converts web documents to PDF";
homepage = "https://weasyprint.org/";
license = lib.licenses.bsd3;
mainProgram = "weasyprint";
maintainers = with lib.maintainers; [
DutchGerman
friedow
];
};
})
|