guix-commits
[Top][All Lists]
Advanced

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

02/05: gnu: Add python-chevron.


From: guix-commits
Subject: 02/05: gnu: Add python-chevron.
Date: Thu, 4 May 2023 12:48:38 -0400 (EDT)

rekado pushed a commit to branch master
in repository guix.

commit d60b77ee5d97f54ffd9f6b5998cefa61ff2fd231
Author: Ricardo Wurmus <rekado@elephly.net>
AuthorDate: Thu May 4 10:51:02 2023 +0200

    gnu: Add python-chevron.
    
    * gnu/packages/python-xyz.scm (python-chevron): New variable.
---
 gnu/packages/python-xyz.scm | 18 ++++++++++++++++++
 1 file changed, 18 insertions(+)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index e5d3897bef..ee945b658d 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -19824,6 +19824,24 @@ from the header, as well as section details and data 
available.")
      @end enumerate")
     (license (license:x11-style "file://LICENSE"))))
 
+(define-public python-chevron
+  (package
+    (name "python-chevron")
+    (version "0.14.0")
+    (source (origin
+              (method url-fetch)
+              (uri (pypi-uri "chevron" version))
+              (sha256
+               (base32
+                "1gqfh00ics2k1sm5g46l3bi8cl5fc5d1cwzh1ylvcxvdvypklqc7"))))
+    (build-system pyproject-build-system)
+    (arguments (list #:tests? #false)) ;there are none
+    (home-page "https://github.com/noahmorrison/chevron";)
+    (synopsis "Mustache templating language renderer")
+    (description "This package provides a Python implementation of the
+Mustache templating language renderer.")
+    (license license:expat)))
+
 (define-public python-dulwich
   (package
     (name "python-dulwich")



reply via email to

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