summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-oauthlib/package.py
blob: afb835bcfac47f82de4662717b5370e42ebb35cf (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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
# 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 PyOauthlib(PythonPackage):
    """
    A generic, spec-compliant, thorough implementation of the OAuth
    request-signing logic
    """

    homepage = "https://github.com/oauthlib/oauthlib"
    pypi = "oauthlib/oauthlib-3.1.0.tar.gz"

    license("BSD-3-Clause")

    version("3.2.1", sha256="1565237372795bf6ee3e5aba5e2a85bd5a65d0e2aa5c628b9a97b7d7a0da3721")
    version("3.1.1", sha256="8f0215fcc533dd8dd1bee6f4c412d4f0cd7297307d43ac61666389e3bc3198a3")
    version("3.1.0", sha256="bee41cc35fcca6e988463cacc3bcb8a96224f470ca547e697b604cc697b2f889")
    version("3.0.1", sha256="0ce32c5d989a1827e3f1148f98b9085ed2370fc939bf524c9c851d8714797298")
    version("2.0.2", sha256="b3b9b47f2a263fe249b5b48c4e25a5bce882ff20a0ac34d553ce43cff55b53ac")

    variant(
        "extras",
        when="@:3.1.1",
        default=True,
        description="Build with pyjwt, blinker, cryptography",
    )
    variant("rsa", when="@3.2.1:", default=False, description="Build with cryptography")
    variant(
        "signedtoken",
        when="@3.2.1:",
        default=False,
        description="Build with cryptography and pyjwt",
    )
    variant("signals", when="@3.2.1:", default=False, description="Build with blinker")

    depends_on("py-setuptools", type="build")
    depends_on("py-pyjwt@1.0.0:", type=("build", "run"), when="+extras")
    depends_on("py-pyjwt@2.0.0:2", type=("build", "run"), when="+extras @3.1.1:")
    depends_on("py-pyjwt@2.0.0:2", type=("build", "run"), when="+signedtoken @3.2.1:")
    depends_on("py-blinker", type=("build", "run"), when="+extras")
    depends_on("py-blinker", type=("build", "run"), when="+signals")
    depends_on("py-blinker@1.4:", type=("build", "run"), when="+extras @3.1.1:")
    depends_on("py-blinker@1.4:", type=("build", "run"), when="+signals @3.2.1:")
    depends_on("py-cryptography", type=("build", "run"), when="+extras")
    depends_on("py-cryptography@3.0.0:3", type=("build", "run"), when="+extras @3.1.1")
    depends_on("py-cryptography@3.0.0:", type=("build", "run"), when="+rsa @3.2.1:")
    depends_on("py-cryptography@3.0.0:", type=("build", "run"), when="+signedtoken @3.2.1:")
    depends_on("python@2.7:2.8,3.4:", type=("build", "run"))
    depends_on("python@3.6:", type=("build", "run"), when="@3.1.1:")