gnu: python2-pillow: Fix build.

* gnu/packages/python-xyz.scm (python2-pillow): Downgrade to version 6.2.2.
This commit is contained in:
Maxim Cournoyer 2020-11-20 23:46:15 -05:00
parent beba9ff821
commit 4d6dcba927
No known key found for this signature in database
GPG Key ID: 1260E46482E63562
1 changed files with 12 additions and 1 deletions

View File

@ -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