From dd840b1baef977ba2d1b9024ddb9598036e55f6c Mon Sep 17 00:00:00 2001 From: Paul Menzel Date: Wed, 16 Aug 2017 11:31:49 +0200 Subject: [PATCH] python3: Install Mako Templates for Python Piglit [1] requires Mako templates [2]. > Mako is a template library written in Python. It provides a familiar, > non-XML syntax which compiles into Python modules for maximum > performance. Mako's syntax and API borrows from the best ideas of many > others, including Django and Jinja2 templates, Cheetah, Myghty, and > Genshi. Conceptually, Mako is an embedded Python (i.e. Python Server > Page) language, which refines the familiar ideas of componentized > layout and inheritance to produce one of the most straightforward and > flexible models available, while also maintaining close ties to Python > calling and scoping semantics. [1] https://cgit.freedesktop.org/piglit/ [2] http://www.makotemplates.org/ --- python-3.6.2-0.build.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/python-3.6.2-0.build.sh b/python-3.6.2-0.build.sh index 68c8b94..9b72030 100755 --- a/python-3.6.2-0.build.sh +++ b/python-3.6.2-0.build.sh @@ -34,3 +34,4 @@ pip3 install SciPy NumPy Matplotlib pandas SymPy nose pip3 install scikit-learn pip3 install seaborn pip3 install metaseq +pip3 install Mako