summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-pygithub/package.py
blob: acc93b3e495d74af2331925cc0f1d185e6bc884e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# 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 PyPygithub(PythonPackage):
    """Typed interactions with the GitHub API v3"""

    homepage = "https://pygithub.readthedocs.io/"
    pypi = "PyGithub/PyGithub-1.54.1.tar.gz"

    license("LGPL-3.0-only")

    version("2.1.1", sha256="ecf12c2809c44147bce63b047b3d2e9dac8a41b63e90fcb263c703f64936b97c")
    version("1.59.1", sha256="c44e3a121c15bf9d3a5cc98d94c9a047a5132a9b01d22264627f58ade9ddc217")
    version("1.55", sha256="1bbfff9372047ff3f21d5cd8e07720f3dbfdaf6462fcaed9d815f528f1ba7283")

    depends_on("python@3.6:", type=("build", "run"))
    depends_on("python@3.7:", type=("build", "run"), when="@1.57:")

    depends_on("py-setuptools", type="build")
    depends_on("py-setuptools-scm", type="build", when="@1.58.1:")
    depends_on("py-pynacl@1.4.0:", type=("build", "run"))
    depends_on("py-python-dateutil", type=("build", "run"), when="@2.1.0:")
    depends_on("py-requests@2.14.0:", type=("build", "run"))
    depends_on("py-pyjwt@2.4.0:", type=("build", "run"))
    depends_on("py-pyjwt@2.4.0: +crypto", type=("build", "run"), when="@1.58.1:")
    depends_on("py-typing-extensions@4:", type=("build", "run"), when="@2.1.0:")
    depends_on("py-urllib3@1.26.0:", type=("build", "run"), when="@2.1.0:")
    depends_on("py-deprecated", type=("build", "run"))