New package - py-scikit-image (http://scikit-image.org/).

This commit is contained in:
Glenn Johnson 2016-04-04 12:13:31 -05:00
parent 8404f084c8
commit 9c60f122a6

View File

@ -0,0 +1,20 @@
from spack import *
class PyScikitImage(Package):
"""Image processing algorithms for SciPy, including IO, morphology, filtering, warping, color manipulation, object detection, etc."""
homepage = "http://scikit-image.org/"
url = "https://pypi.python.org/packages/source/s/scikit-image/scikit-image-0.12.3.tar.gz"
version('0.12.3', '04ea833383e0b6ad5f65da21292c25e1')
extends('python', ignore=r'bin/.*\.py$|bin/f2py$')
depends_on('py-dask')
depends_on('py-pillow')
depends_on('py-networkx')
depends_on('py-six')
depends_on('py-scipy')
depends_on('py-matplotlib')
def install(self, spec, prefix):
python('setup.py', 'install', '--prefix=%s' % prefix)