summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorAdam J. Stewart <ajstewart426@gmail.com>2020-09-15 00:38:16 -0500
committerGitHub <noreply@github.com>2020-09-15 07:38:16 +0200
commitdefde398c43069b10613be246fb861182ac7dcba (patch)
treeacc5a9cd859e21a36d0c7d5d6b0e0638e80981bb /var
parent77d20906c02769af8823042562c177bd696186f8 (diff)
downloadspack-defde398c43069b10613be246fb861182ac7dcba.tar.gz
spack-defde398c43069b10613be246fb861182ac7dcba.tar.bz2
spack-defde398c43069b10613be246fb861182ac7dcba.tar.xz
spack-defde398c43069b10613be246fb861182ac7dcba.zip
py-argon2-cffi: added new package at v20.1.0 (#18626)
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/py-argon2-cffi/package.py21
1 files changed, 21 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-argon2-cffi/package.py b/var/spack/repos/builtin/packages/py-argon2-cffi/package.py
new file mode 100644
index 0000000000..954c86331c
--- /dev/null
+++ b/var/spack/repos/builtin/packages/py-argon2-cffi/package.py
@@ -0,0 +1,21 @@
+# Copyright 2013-2020 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)
+
+
+class PyArgon2Cffi(PythonPackage):
+ """The secure Argon2 password hashing algorithm.."""
+
+ homepage = "https://argon2-cffi.readthedocs.io/"
+ url = "https://pypi.io/packages/source/a/argon2-cffi/argon2-cffi-20.1.0.tar.gz"
+
+ version('20.1.0', sha256='d8029b2d3e4b4cea770e9e5a0104dd8fa185c1724a0f01528ae4826a6d25f97d')
+
+ depends_on('py-setuptools', type='build')
+ depends_on('py-cffi@1.0.0:', type=('build', 'run'))
+ depends_on('py-six', type=('build', 'run'))
+ depends_on('py-enum34', when='^python@:3.3', type=('build', 'run'))
+ depends_on('py-coverage@5.0.2:+toml', type='test')
+ depends_on('py-hypothesis', type='test')
+ depends_on('py-pytest', type='test')