me
/
guix
Archived
1
0
Fork 0

gnu: Add python-pillow-2.9.

* gnu/packages/python-xyz.scm (python-pillow-2.9): New package.
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
1 changed files with 16 additions and 0 deletions

View File

@ -5335,6 +5335,22 @@ a general image processing tool.")
(define-public python2-pillow (define-public python2-pillow
(package-with-python2 python-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 (define-public python-roifile
(package (package
(name "python-roifile") (name "python-roifile")