summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-lxml/package.py
blob: 0a4cfe54f98ca8f7eb226aec575ca8455cd737cd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# Copyright 2013-2021 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 = "https://lxml.de/"
    pypi = "lxml/lxml-4.6.1.tar.gz"

    version('4.6.3', sha256='39b78571b3b30645ac77b95f7c69d1bffc4cf8c3b157c435a34da72e78c82468')
    version('4.6.1', sha256='c152b2e93b639d1f36ec5a8ca24cde4a8eefb2b6b83668fcd8e83a67badcb367')
    version('4.5.2', sha256='cdc13a1682b2a6241080745b1953719e7fe0850b40a5c71ca574f090a1391df6')
    version('4.4.1', sha256='c81cb40bff373ab7a7446d6bbca0190bccc5be3448b47b51d729e37799bb5692')
    version('4.3.3', sha256='4a03dd682f8e35a10234904e0b9508d705ff98cf962c5851ed052e9340df3d90')
    version('4.2.5', sha256='36720698c29e7a9626a0dc802ef8885f8f0239bfd1689628ecd459a061f2807f')
    version('3.7.3', sha256='aa502d78a51ee7d127b4824ff96500f0181d3c7826e6ee7b800d068be79361c7')
    version('2.3', sha256='eea1b8d29532739c1383cb4794c5eacd6176f0972b59e8d29348335b87ff2e66')

    variant('html5', default=False, description='Enable html5lib backend')
    variant('htmlsoup',  default=False, description='Enable BeautifulSoup4 backend')
    variant('cssselect',   default=False, description='Enable cssselect module')

    depends_on('python@2.7:2.8,3.5:', type=('build', 'run'))
    depends_on('py-setuptools', type='build')
    depends_on('libxml2@2.9.2:', type=('build', 'link', 'run'))
    depends_on('libxslt@1.1.27:', type=('build', 'link', 'run'))
    depends_on('py-html5lib', when='+html5', type=('build', 'run'))
    depends_on('py-beautifulsoup4', when='+htmlsoup', type=('build', 'run'))
    depends_on('py-cssselect@0.7:', when='+cssselect', type=('build', 'run'))