Skip to content
Snippets Groups Projects
Commit 5891847a authored by Gregory L. Lee's avatar Gregory L. Lee
Browse files

added py-pillow and updated py-basemap to depend on it

parent a56c7e5f
No related branches found
No related tags found
No related merge requests found
......@@ -11,8 +11,8 @@ class PyBasemap(Package):
extends('python')
depends_on('py-setuptools')
depends_on('py-numpy')
depends_on('py-matplotlib')
depends_on('py-pil')
depends_on('py-matplotlib+gui')
depends_on('py-pillow')
depends_on("geos")
def install(self, spec, prefix):
......
from spack import *
class PyPillow(Package):
"""Pillow is the friendly PIL fork by Alex Clark and Contributors. PIL is the Python Imaging Library by Fredrik Lundh and Contributors. The Python Imaging Library (PIL) adds image processing capabilities to your Python interpreter. This library supports many file formats, and provides powerful image processing and graphics capabilities."""
homepage = "https://python-pillow.github.io/"
url = "https://pypi.python.org/packages/source/P/Pillow/Pillow-3.0.0.tar.gz"
version('3.0.0', 'fc8ac44e93da09678eac7e30c9b7377d')
extends('python')
depends_on('py-setuptools')
def install(self, spec, prefix):
python('setup.py', 'install', '--prefix=%s' % prefix)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment