New package - py-scikit-image (http://scikit-image.org/).
This commit is contained in:
parent
8404f084c8
commit
9c60f122a6
20
var/spack/repos/builtin/packages/py-scikit-image/package.py
Normal file
20
var/spack/repos/builtin/packages/py-scikit-image/package.py
Normal 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)
|
Loading…
Reference in New Issue
Block a user