[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
02/03: gnu: Add python-mako.
From: |
Christopher Allan Webber |
Subject: |
02/03: gnu: Add python-mako. |
Date: |
Fri, 12 Feb 2016 21:28:03 +0000 |
cwebber pushed a commit to branch wip-mediagoblin
in repository guix.
commit 8e6b845d1b966ca86396bde06a09d028e1380fea
Author: Christopher Allan Webber <address@hidden>
Date: Fri Feb 12 13:23:46 2016 -0800
gnu: Add python-mako.
* gnu/packages/python.scm (python-mako, python2-mako): New variables.
---
gnu/packages/python.scm | 27 +++++++++++++++++++++++++++
1 files changed, 27 insertions(+), 0 deletions(-)
diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index 0eb79e5..a8e1045 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -7536,3 +7536,30 @@ available in Django, but is a standalone package.")
(define-public python2-wtforms
(package-with-python2 python-wtforms))
+
+(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)
+ (inputs
+ `(("python-setuptools" ,python-setuptools)
+ ("python-markupsafe" ,python-markupsafe)
+ ("python-mock" ,python-mock)
+ ("python-nose" ,python-nose)))
+ (home-page "http://www.makotemplates.org/")
+ (synopsis
+ "A super-fast templating language that borrows the best ideas from the
existing templating languages.")
+ (description
+ "A super-fast templating language that borrows the best ideas from the
existing templating languages.")
+ (license expat)))
+
+(define-public python2-mako
+ (package-with-python2 python-mako))