summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-sphinxcontrib-issuetracker/package.py
blob: e16c3a9d827765f6b60e26659adbedf6a03ccf47 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# 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 PySphinxcontribIssuetracker(PythonPackage):
    """Sphinx integration with different issuetrackers."""

    homepage = "https://sphinxcontrib-issuetracker.readthedocs.org/"
    pypi = "sphinxcontrib-issuetracker/sphinxcontrib-issuetracker-0.11.tar.gz"

    license("BSD-2-Clause")

    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"))