guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

01/01: gnu: Add python-pystache.


From: Ludovic Courtès
Subject: 01/01: gnu: Add python-pystache.
Date: Wed, 18 Nov 2015 11:21:52 +0000

civodul pushed a commit to branch master
in repository guix.

commit f7d17ac7565b6b1d005ff735180e5b24c9bf32cc
Author: Erik Edrosa <address@hidden>
Date:   Sun Nov 15 20:29:46 2015 -0500

    gnu: Add python-pystache.
    
    * gnu/packages/python.scm (python-pystache, python2-pystache): New
      variables.
    
    Signed-off-by: Ludovic Courtès <address@hidden>
---
 gnu/packages/python.scm |   24 ++++++++++++++++++++++++
 1 files changed, 24 insertions(+), 0 deletions(-)

diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index 4e54ef9..508479b 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -12,6 +12,7 @@
 ;;; Copyright © 2015 Eric Dvorsak <address@hidden>
 ;;; Copyright © 2015 Leo Famulari <address@hidden>
 ;;; Copyright © 2015 Ben Woodcroft <address@hidden>
+;;; Copyright © 2015 Erik Edrosa <address@hidden>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -2352,6 +2353,29 @@ written in pure Python.")
 (define-public python2-jinja2
   (package-with-python2 python-jinja2))
 
+(define-public python-pystache
+  (package
+    (name "python-pystache")
+    (version "0.5.4")
+    (source (origin
+              (method url-fetch)
+              (uri (pypi-uri "pystache" version))
+              (sha256
+               (base32
+                "0nmqsfmiw4arjxqkmf9z66ml950pcdjk6aq4gin4sywmzdjw5fzp"))))
+    (build-system python-build-system)
+    (native-inputs
+     `(("python-setuptools" ,python-setuptools)))
+    (home-page "http://defunkt.io/pystache/";)
+    (synopsis "Python logic-less template engine")
+    (description
+     "Pystache is a Python implementation of the framework agnostic,
+logic-free templating system Mustache.")
+    (license license:expat)))
+
+(define-public python2-pystache
+  (package-with-python2 python-pystache))
+
 (define-public python-joblib
   (package
     (name "python-joblib")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]