gnu: Add python-mako.

* gnu/packages/python.scm (python-mako, python2-mako): New variables.
This commit is contained in:
David Thompson 2016-02-17 20:03:54 -05:00
parent 373dfe64a3
commit 50aaec25ca
1 changed files with 32 additions and 0 deletions

View File

@ -7529,3 +7529,35 @@ available in Django, but is a standalone package.")
(inherit (package-with-python2
(strip-python2-variant python-wtforms)))
(inputs `(("python2-setuptools" ,python2-setuptools)))))
(define-public python-mako
(package
(name "python-mako")
(version "1.0.3")
(source
(origin
(method url-fetch)
(uri (pypi-uri "Mako" version))
(sha256
(base32
"136kcjbs0s98qkx8a418b05dfblqp0kiiqyx8vhx4rarwc7bqi3n"))))
(build-system python-build-system)
(native-inputs
`(("python-markupsafe" ,python-markupsafe)
("python-mock" ,python-mock)
("python-nose" ,python-nose)))
(home-page "http://www.makotemplates.org/")
(synopsis "Templating language for Python")
(description "Mako is a templating language for Python that compiles
templates into Python modules.")
(license license:expat)
(properties `((python2-variant . ,(delay python2-mako))))))
(define-public python2-mako
(let ((base (package-with-python2
(strip-python2-variant python-mako))))
(package
(inherit base)
(native-inputs
(cons `("python2-setuptools" ,python2-setuptools)
(package-native-inputs base))))))