kumquat-buildroot/package/python-mako/Config.in
Romain Naour 411a3deb1a package/python-mako: add optional runtime dependency on python-babel
Some extensions of python-mako use python-babel, if they are used,
python-babel must be added as a runtime dependency.

Signed-off-by: Romain Naour <romain.naour@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
2023-09-30 18:48:26 +02:00

28 lines
728 B
Plaintext

config BR2_PACKAGE_PYTHON_MAKO
bool "python-mako"
select BR2_PACKAGE_PYTHON_MARKUPSAFE # runtime
help
Mako is a template library written in Python. It provides a
familiar, non-XML syntax which compiles into Python modules
for maximum performance.
https://pypi.python.org/pypi/Mako
if BR2_PACKAGE_PYTHON_MAKO
config BR2_PACKAGE_PYTHON_MAKO_EXT_PYGMENTPLUGIN
bool "mako extension pygmentplugin"
select BR2_PACKAGE_PYTHON_PYGMENTS # runtime
help
Provide python-pygments support for
mako.ext.pygmentplugin
config BR2_PACKAGE_PYTHON_MAKO_EXT_BABELPLUGIN
bool "mako extension babelplugin"
select BR2_PACKAGE_PYTHON_BABEL # runtime
help
Provide python-babel support for
mako.ext.babelplugin
endif