guix-commits
[Top][All Lists]
Advanced

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

02/05: gnu: python-jinja2: Update to 2.9.6.


From: Ricardo Wurmus
Subject: 02/05: gnu: python-jinja2: Update to 2.9.6.
Date: Wed, 30 Aug 2017 11:32:30 -0400 (EDT)

rekado pushed a commit to branch master
in repository guix.

commit bac5fd21a138d34df6803645df8f4c34c27d7d21
Author: Ricardo Wurmus <address@hidden>
Date:   Wed Aug 30 17:07:59 2017 +0200

    gnu: python-jinja2: Update to 2.9.6.
    
    * gnu/packages/python.scm (python-jinja2): Update to 2.9.6.
    [arguments]: Add build phase "delete-incompatible-files".
---
 gnu/packages/python.scm | 16 ++++++++++++++--
 1 file changed, 14 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index e8018b4..2d4a560 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -3030,15 +3030,27 @@ for Python.")
 (define-public python-jinja2
   (package
     (name "python-jinja2")
-    (version "2.8")
+    (version "2.9.6")
     (source
      (origin
        (method url-fetch)
        (uri (pypi-uri "Jinja2" version))
        (sha256
         (base32
-         "1x0v41lp5m1pjix3l46zx02b7lqp2hflgpnxwkywxynvi3zz47xw"))))
+         "1zzrkywhziqffrzks14kzixz7nd4yh2vc0fb04a68vfd2ai03anx"))))
     (build-system python-build-system)
+    (arguments
+     `(#:phases
+       (modify-phases %standard-phases
+         ;; These files cannot be built with Python < 3.6.  See
+         ;; https://github.com/pallets/jinja/issues/655
+         ;; FIXME: Remove this when the "python" package is upgraded.
+         (add-after 'unpack 'delete-incompatible-files
+           (lambda _
+             (for-each delete-file
+                       '("jinja2/asyncsupport.py"
+                         "jinja2/asyncfilters.py"))
+             #t)))))
     (propagated-inputs
      `(("python-markupsafe" ,python-markupsafe)))
     (home-page "http://jinja.pocoo.org/";)



reply via email to

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