guix-commits
[Top][All Lists]
Advanced

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

branch master updated: gnu: python2-pillow: Fix build.


From: guix-commits
Subject: branch master updated: gnu: python2-pillow: Fix build.
Date: Fri, 20 Nov 2020 23:54:18 -0500

This is an automated email from the git hooks/post-receive script.

apteryx pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 4d6dcba  gnu: python2-pillow: Fix build.
4d6dcba is described below

commit 4d6dcba9275e34650d49da4727a2aac4def341c5
Author: Maxim Cournoyer <maxim.cournoyer@gmail.com>
AuthorDate: Fri Nov 20 23:46:15 2020 -0500

    gnu: python2-pillow: Fix build.
    
    * gnu/packages/python-xyz.scm (python2-pillow): Downgrade to version 6.2.2.
---
 gnu/packages/python-xyz.scm | 13 ++++++++++++-
 1 file changed, 12 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index d50c5d5..b1363f8 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -5703,7 +5703,18 @@ a general image processing tool.")
               "The PIL Software License"))))
 
 (define-public python2-pillow
-  (package-with-python2 python-pillow))
+  (package-with-python2
+   (package
+     (inherit python-pillow)
+     ;; Version 6 is the last series with Python 2 support.
+     (version "6.2.2")
+     (source
+     (origin
+       (method url-fetch)
+       (uri (pypi-uri "Pillow" version))
+       (sha256
+        (base32
+         "0l5rv8jkdrb5q846v60v03mcq64yrhklidjkgwv6s1pda71g17yv")))))))
 
 (define-public python-pillow-2.9
   (package



reply via email to

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