25 lines
905 B
Python
25 lines
905 B
Python
# 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 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"
|
|
|
|
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'))
|