[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/02: gnu: Add python-mako.
From: |
Christopher Allan Webber |
Subject: |
01/02: gnu: Add python-mako. |
Date: |
Sun, 14 Feb 2016 01:00:56 +0000 |
cwebber pushed a commit to branch wip-mediagoblin
in repository guix.
commit 064c96ee9be22f57791d05fff68970d9fb6fa08c
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 2924237..86960da 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -7532,3 +7532,30 @@ 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)
+ (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))