diff options
author | takanori-ihara <62980219+takanori-ihara@users.noreply.github.com> | 2020-05-09 02:30:47 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-08 12:30:47 -0500 |
commit | 89c92a02062cf91c4e3e66fe86846e57bc3388b8 (patch) | |
tree | c2634a156d939ac2bd1ec2e604419e36164e3903 | |
parent | e1c49d11bf5501515afa4ee5d4203ed5c232b48e (diff) | |
download | spack-89c92a02062cf91c4e3e66fe86846e57bc3388b8.tar.gz spack-89c92a02062cf91c4e3e66fe86846e57bc3388b8.tar.bz2 spack-89c92a02062cf91c4e3e66fe86846e57bc3388b8.tar.xz spack-89c92a02062cf91c4e3e66fe86846e57bc3388b8.zip |
Add new package:py-pytest-check-links (#16503)
-rw-r--r-- | var/spack/repos/builtin/packages/py-pytest-check-links/package.py | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-pytest-check-links/package.py b/var/spack/repos/builtin/packages/py-pytest-check-links/package.py new file mode 100644 index 0000000000..49269ce1f2 --- /dev/null +++ b/var/spack/repos/builtin/packages/py-pytest-check-links/package.py @@ -0,0 +1,19 @@ +# 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 PyPytestCheckLinks(PythonPackage): + """pytest plugin that checks URLs for HTML-containing files.""" + + homepage = "https://github.com/jupyterlab/pytest-check-links" + url = "https://pypi.io/packages/source/p/pytest-check-links/pytest_check_links-0.3.4.tar.gz" + + version('0.3.4', sha256='4b3216548431bf9796557e8ee8fd8e5e77a69a4690b3b2f9bcf6fb5af16a502b') + + depends_on('py-setuptools@17.1:', type='build') + depends_on('py-pbr@1.9:', type='build') |