summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-dryscrape/package.py
blob: 1e21e1660692967d89a98c15b1b9a5d072ecc95a (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
# Copyright 2013-2024 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 PyDryscrape(PythonPackage):
    """a lightweight Javascript-aware, headless web scraping library
    for Python"""

    homepage = "https://github.com/niklasb/dryscrape"
    pypi = "dryscrape/dryscrape-1.0.tar.gz"
    git = "https://github.com/niklasb/dryscrape.git"

    license("MIT")

    version("develop", branch="master")
    version("1.0", sha256="a99858786434947266cb81d5634cb1722de48aaf6b9cdffda15b7cd4a8e07340")

    # pip silently replaces distutils with setuptools
    depends_on("py-setuptools", type="build")
    depends_on("py-lxml", type=("build", "run"))
    depends_on("py-webkit-server@1.0:", type=("build", "run"))
    depends_on("py-xvfbwrapper", type=("build", "run"))