[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 06/13] gnu: Add python-pillow.
From: |
Eric Bavier |
Subject: |
[PATCH 06/13] gnu: Add python-pillow. |
Date: |
Thu, 20 Nov 2014 23:41:01 -0600 |
* gnu/packages/python.scm (python-pillow, python2-pillow): New variables.
---
gnu/packages/python.scm | 52 +++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 52 insertions(+)
diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index 6238e4f..9e6d3c9 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -31,6 +31,7 @@
#:use-module (gnu packages compression)
#:use-module (gnu packages gdbm)
#:use-module (gnu packages icu4c)
+ #:use-module (gnu packages image)
#:use-module (gnu packages libffi)
#:use-module (gnu packages readline)
#:use-module (gnu packages openssl)
@@ -38,6 +39,7 @@
#:use-module (gnu packages pkg-config)
#:use-module (gnu packages databases)
#:use-module (gnu packages zip)
+ #:use-module (gnu packages ghostscript)
#:use-module (gnu packages multiprecision)
#:use-module (guix packages)
#:use-module (guix download)
@@ -1914,3 +1916,53 @@ simple and Pythonic domain language.")
(define-public python2-sqlalchemy
(package-with-python2 python-sqlalchemy))
+
+(define-public python-pillow
+ (package
+ (name "python-pillow")
+ (version "2.6.1")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append "https://pypi.python.org/packages/source/P/"
+ "Pillow/Pillow-" version ".tar.gz"))
+ (sha256
+ (base32
+ "0iw36c73wkhz88wa78v6l43llsb080ihw8yq7adhfqxdib7l4hzr"))))
+ (build-system python-build-system)
+ (native-inputs
+ `(("python-setuptools" ,python-setuptools)
+ ("python-nose" ,python-nose)))
+ (inputs
+ `(("lcms" ,lcms)
+ ("zlib" ,zlib)
+ ("libjpeg" ,libjpeg)
+ ("openjpeg" ,openjpeg)
+ ("libtiff" ,libtiff)))
+ (propagated-inputs
+ `(;; Used at runtime for pkg_resources
+ ("python-setuptools" ,python-setuptools)))
+ (arguments
+ `(#:phases (alist-cons-after
+ 'install 'check-installed
+ (lambda _
+ (begin
+ (setenv "HOME" (getcwd))
+ (and (zero? (system* "python" "selftest.py"
"--installed"))
+ (zero? (system* "python" "test-installed.py")))))
+ (alist-delete 'check %standard-phases))))
+ (home-page "https://pypi.python.org/pypi/Pillow")
+ (synopsis "Fork of the Python Imaging Library")
+ (description
+ "The Python Imaging Library adds image processing capabilities to your
+Python interpreter. This library provides extensive file format support, an
+efficient internal representation, and fairly powerful image processing
+capabilities. The core image library is designed for fast access to data
+stored in a few basic pixel formats. It should provide a solid foundation for
+a general image processing tool.")
+ (license (x11-style
+ "http://www.pythonware.com/products/pil/license.htm"
+ "The PIL Software License"))))
+
+(define-public python2-pillow
+ (package-with-python2 python-pillow))
--
1.7.9.5
- Re: [PATCH 01/13] gnu: subversion: Propagate env variables to hooks., (continued)
- [PATCH 03/13] gnu: Add python-sqlalchemy., Eric Bavier, 2014/11/21
- [PATCH 02/13] gnu: python: Add sqlite input., Eric Bavier, 2014/11/21
- [PATCH 05/13] gnu: Export ghostscript module symbols up-front., Eric Bavier, 2014/11/21
- [PATCH 04/13] gnu: Export symbols in (gnu packages image) upfront., Eric Bavier, 2014/11/21
- [PATCH 06/13] gnu: Add python-pillow.,
Eric Bavier <=
- [PATCH 07/13] gnu: Add python-distutils-extra., Eric Bavier, 2014/11/21
- [PATCH 08/13] gnu: Add python-elib.intl., Eric Bavier, 2014/11/21
- [PATCH 09/13] guix: Add MPL1.1 license., Eric Bavier, 2014/11/21
- [PATCH 10/13] gnu: Add python-pycairo., Eric Bavier, 2014/11/21
- [PATCH 11/13] gnu: Add python-pygobject., Eric Bavier, 2014/11/21