gnu: Add python-pillow-2.9.

* gnu/packages/python-xyz.scm (python-pillow-2.9): New package.
This commit is contained in:
Efraim Flashner 2020-06-30 19:09:49 +03:00
parent 13bd54b15d
commit 634620dbb2
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -5335,6 +5335,22 @@ (define-public python-pillow
(define-public python2-pillow
(package-with-python2 python-pillow))
(define-public python-pillow-2.9
(package
(inherit python-pillow)
(version "2.9.0")
(source
(origin
(method url-fetch)
(uri (pypi-uri "Pillow" version))
(sha256
(base32
"0ada7lf3lmbdsqm3b7ja920p1pllyfhmqndr85ikpj77fmz9s5qg"))))
(arguments
(substitute-keyword-arguments (package-arguments python-pillow)
((#:tests? _ #f) #f)))
(properties '((hidden? #t)))))
(define-public python-roifile
(package
(name "python-roifile")