
- [x] add `concretize.lp`, `spack.yaml`, etc. to licensed files - [x] update all licensed files to say 2013-2021 using `spack license update-copyright-year` - [x] appease mypy with some additions to package.py that needed for oneapi.py
24 lines
1.0 KiB
Python
24 lines
1.0 KiB
Python
# 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 PyHtml5lib(PythonPackage):
|
|
"""HTML parser based on the WHATWG HTML specification."""
|
|
|
|
homepage = "https://github.com/html5lib/html5lib-python"
|
|
pypi = "html5lib/html5lib-0.9999999.tar.gz"
|
|
|
|
version('1.0.1', sha256='66cb0dcfdbbc4f9c3ba1a63fdb511ffdbd4f513b2b6d81b80cd26ce6b3fb3736')
|
|
version('0.9999999', sha256='2612a191a8d5842bfa057e41ba50bbb9dcb722419d2408c78cff4758d0754868')
|
|
|
|
depends_on('python@2.6:2.8,3.2:', when='@0.9999999', type=('build', 'run'))
|
|
depends_on('python@2.6:2.8,3.3:', when='@1.0.1:', type=('build', 'run'))
|
|
depends_on('py-six', type=('build', 'run'))
|
|
depends_on('py-six@1.9:', type=('build', 'run'), when='@1.0.1:')
|
|
depends_on('py-setuptools', type='build', when='@1.0.1:')
|
|
depends_on('py-webencodings', type=('build', 'run'), when='@1.0.1:')
|