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
|
{
lib,
stdenv,
python,
buildPythonPackage,
fetchPypi,
flit-core,
babel,
markupsafe,
pytestCheckHook,
sphinxHook,
pallets-sphinx-themes,
sphinxcontrib-log-cabinet,
sphinx-issues,
# Reverse dependency
sage,
}:
buildPythonPackage rec {
pname = "jinja2";
version = "3.1.6";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-ATf7BZkNNfEnWlh+mu5tVtqCH8g0kaD7g4GDvkP2bW0=";
};
postPatch = ''
# Do not test with trio, it increases jinja2's dependency closure by a lot
# and everyone consuming these dependencies cannot rely on sphinxHook,
# because sphinx itself depends on jinja2.
substituteInPlace tests/test_async{,_filters}.py \
--replace-fail "import trio" "" \
--replace-fail ", trio.run" "" \
--replace-fail ", \"trio\"" ""
'';
build-system = [ flit-core ];
dependencies = [ markupsafe ];
optional-dependencies = {
i18n = [ babel ];
};
# Multiple tests run out of stack space on 32bit systems with python2.
# See https://github.com/pallets/jinja/issues/1158
doCheck = !stdenv.hostPlatform.is32bit;
nativeCheckInputs = [ pytestCheckHook ] ++ optional-dependencies.i18n;
passthru.doc = stdenv.mkDerivation {
# Forge look and feel of multi-output derivation as best as we can.
#
# Using 'outputs = [ "doc" ];' breaks a lot of assumptions.
pname = "${pname}-doc";
inherit src version;
patches = [
# Fix import of "sphinxcontrib-log-cabinet"
./patches/import-order.patch
];
postInstallSphinx = ''
mv $out/share/doc/* $out/share/doc/python$pythonVersion-$pname-$version
'';
nativeBuildInputs = [
sphinxHook
sphinxcontrib-log-cabinet
pallets-sphinx-themes
sphinx-issues
];
inherit (python) pythonVersion;
inherit meta;
};
passthru.tests = {
inherit sage;
};
meta = {
changelog = "https://github.com/pallets/jinja/blob/${version}/CHANGES.rst";
description = "Very fast and expressive template engine";
downloadPage = "https://github.com/pallets/jinja";
homepage = "https://jinja.palletsprojects.com";
license = lib.licenses.bsd3;
longDescription = ''
Jinja is a fast, expressive, extensible templating engine. Special
placeholders in the template allow writing code similar to Python
syntax. Then the template is passed data to render the final document.
'';
maintainers = with lib.maintainers; [ pierron ];
};
}
|