
- [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
23 lines
805 B
Python
23 lines
805 B
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 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')
|
|
|
|
depends_on('py-lxml', type=('build', 'run'))
|
|
depends_on('py-webkit-server@1.0:', type=('build', 'run'))
|
|
depends_on('py-xvfbwrapper', type=('build', 'run'))
|