summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-argon2-cffi/package.py
blob: ecd5ea039c1b9f07b86dcb65bdcdee4b78fc3298 (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
# Copyright 2013-2023 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 PyArgon2Cffi(PythonPackage):
    """The secure Argon2 password hashing algorithm.."""

    homepage = "https://argon2-cffi.readthedocs.io/"
    pypi = "argon2-cffi/argon2-cffi-20.1.0.tar.gz"

    license("MIT")

    version("21.3.0", sha256="d384164d944190a7dd7ef22c6aa3ff197da12962bd04b17f64d4e93d934dba5b")
    version("21.1.0", sha256="f710b61103d1a1f692ca3ecbd1373e28aa5e545ac625ba067ff2feca1b2bb870")
    version("20.1.0", sha256="d8029b2d3e4b4cea770e9e5a0104dd8fa185c1724a0f01528ae4826a6d25f97d")

    depends_on("python@3.6:", when="@21.2:", type=("build", "run"))
    depends_on("python@3.5:", when="@21.1:", type=("build", "run"))
    depends_on("python@2.7:2,3.5:", type=("build", "run"))

    depends_on("py-flit-core@3.4:3", when="@21.2:", type="build")
    depends_on("py-setuptools", when="@:21.1", type="build")

    depends_on("py-argon2-cffi-bindings", when="@21.2:", type=("build", "run"))
    depends_on("py-typing-extensions", when="@21.2: ^python@:3.7", type=("build", "run"))
    depends_on("py-cffi@1.0.0:", when="@:21.1", type=("build", "run"))
    depends_on("py-six", when="@:20.1", type=("build", "run"))