spack/var/spack/repos/builtin/packages/py-lxml/package.py
jwallior 930debcf35 New versions for a few python modules (#9969)
* py-jupyter-console: Add version 5.2.0

* py-jupyter-core: add version 4.4.0

* py-lxml: add version 4.2.5

* py-zmq: add version 17.1.2

* py-terminado: add version 0.8.1

* py-pexpect: add version 4.6.0

* py-pytables: add version 3.4.4
2018-11-28 21:44:15 -06:00

24 lines
845 B
Python

# Copyright 2013-2018 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 PyLxml(PythonPackage):
"""lxml is the most feature-rich and easy-to-use library for processing
XML and HTML in the Python language."""
homepage = "http://lxml.de/"
url = "https://pypi.io/packages/source/l/lxml/lxml-2.3.tar.gz"
version('4.2.5', 'ce042575c4459c4994f68b9a862a72a4')
version('3.7.3', '075692ce442e69bbd604d44e21c02753')
version('2.3', 'a245a015fd59b63e220005f263e1682a')
depends_on('py-setuptools@0.6c5:', type='build')
depends_on('py-cython@0.20:', type='build')
depends_on('libxml2', type=('build', 'run'))
depends_on('libxslt', type=('build', 'run'))