spack/var/spack/repos/builtin/packages/py-wand/package.py
Adam J. Stewart 2264e30d99
Update URL parsing regexes and tests (#13411)
* Update URL parsing regexes and tests

* Get rid of no longer used README

* Merge py-udunits and py-cf-units

* netcdf -> netcdf-c

* setup_environment -> setup_*_environment

* Fix doc tests

* Few last minute fixes

* Simplify prefix removal copypasta
2019-10-28 20:27:54 -05:00

31 lines
1.0 KiB
Python

# Copyright 2013-2019 Lawrence Livermore National Security, LLC and other
# Spack Project Developers. See the top-level COPYRIGHT file for details.
#
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
from spack import *
class PyWand(PythonPackage):
"""Wand is a ctypes-based simple ImageMagick binding for Python.
"""
homepage = "http://docs.wand-py.org"
url = "https://pypi.io/packages/source/W/Wand/Wand-0.5.6.tar.gz"
version('0.5.6', sha256='d06b59f36454024ce952488956319eb542d5dc65f1e1b00fead71df94dbfcf88')
version('0.4.2', sha256='a0ded99a9824ddd82617a4b449164e2c5c93853aaff96f9e0bab8b405d62ca7c')
variant('docs', default=False, description='Build docs')
depends_on('py-setuptools', type='build')
# provides libmagickwand
depends_on('imagemagick')
depends_on('python@2.7:2.8,3.3:', type=('build', 'run'))
depends_on('py-sphinx@1:', type='build', when='+docs')
depends_on('py-pytest@2.3.0:', type='test')
depends_on('py-pytest-xdist@1.8:', type='test')
depends_on('py-psutil@1.0.1:', type='test')