blob: 6550e991e7a26524ff43a76fbc241d283ff2fcff (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# Copyright 2013-2022 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.package 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"
pypi = "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"))
|