Add new py-sphinxcontrib-issuetracker package (#14040)

This commit is contained in:
Adam J. Stewart 2019-12-08 00:10:32 -06:00 committed by GitHub
parent 8d21e39f00
commit 4fb03f7222
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1,19 @@
# Copyright 2013-2019 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 PySphinxcontribIssuetracker(PythonPackage):
"""Sphinx integration with different issuetrackers."""
homepage = "https://sphinxcontrib-issuetracker.readthedocs.org/"
url = "https://pypi.io/packages/source/s/sphinxcontrib-issuetracker/sphinxcontrib-issuetracker-0.11.tar.gz"
version('0.11', sha256='843753d8b5e989116378ab45ecccb368fb78dc56eaa1554ed25e4fbf22745f4e')
depends_on('py-setuptools', type='build')
depends_on('py-sphinx@1.1:', type=('build', 'run'))
depends_on('py-requests@1.1:', type=('build', 'run'))