diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2022-05-05 22:57:19 -0400 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2022-05-31 14:54:00 -0400 |
commit | 493ee41adaeaddc7e750eb16290cc2f43e842684 (patch) | |
tree | d744e7165895d7523ac7665e4ae71843349fc9f2 | |
parent | 89f9678126e7dbcd3b1f96694fdf96778d9b5979 (diff) |
gnu: Remove python2-pillow.
* gnu/packages/python-xyz.scm (python2-pillow): Delete variable.
-rw-r--r-- | gnu/packages/python-xyz.scm | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 74b927eab2..12ac929c51 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -6862,24 +6862,6 @@ a general image processing tool.") "http://www.pythonware.com/products/pil/license.htm" "The PIL Software License")))) -(define-public python2-pillow - (package-with-python2 - (package - (inherit (strip-python2-variant 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")))) - (arguments - (substitute-keyword-arguments (package-arguments python-pillow) - ;; FIXME: One of the tests is failing. - ((#:tests? _ #f) #f)))))) - (define-public python-pillow-2.9 (package (inherit python-pillow) |