blob: 11daf7db41e2da3bd46810bc96e77aada5954b35 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# Copyright 2013-2020 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 PyAdvancedhtmlparser(PythonPackage):
"""Fast Indexed python HTML parser which builds a DOM node tree,
providing common getElementsBy* functions for scraping, testing,
modification, and formatting"""
homepage = "https://github.com/kata198/AdvancedHTMLParser"
url = "https://pypi.io/packages/source/a/advancedhtmlparser/AdvancedHTMLParser-8.1.4.tar.gz"
version('8.1.4', sha256='21a73137026c8ec3248c654a24cc40064196029256cdf71681149f6835e9ed39')
depends_on('py-setuptools', type='build')
depends_on('py-queryablelist', type=('build', 'run'))
|