summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorManuela Kuhn <36827019+manuelakuhn@users.noreply.github.com>2022-02-15 23:14:25 +0100
committerGitHub <noreply@github.com>2022-02-15 15:14:25 -0700
commit939e94790f20f142a10312eab6ccedd0dfa4a995 (patch)
tree1258390492b486e0769a44af7acef837884dfa69 /var
parent9da8f18e3a2246766a7ef4f99fbf5da59bb47167 (diff)
downloadspack-939e94790f20f142a10312eab6ccedd0dfa4a995.tar.gz
spack-939e94790f20f142a10312eab6ccedd0dfa4a995.tar.bz2
spack-939e94790f20f142a10312eab6ccedd0dfa4a995.tar.xz
spack-939e94790f20f142a10312eab6ccedd0dfa4a995.zip
py-argon2-cffi-bindings: add new package (#28943)
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/py-argon2-cffi-bindings/package.py20
1 files changed, 20 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-argon2-cffi-bindings/package.py b/var/spack/repos/builtin/packages/py-argon2-cffi-bindings/package.py
new file mode 100644
index 0000000000..c6720f5eb3
--- /dev/null
+++ b/var/spack/repos/builtin/packages/py-argon2-cffi-bindings/package.py
@@ -0,0 +1,20 @@
+# Copyright 2013-2022 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 import *
+
+
+class PyArgon2CffiBindings(PythonPackage):
+ """Low-level CFFI bindings for Argon2."""
+
+ homepage = "https://github.com/hynek/argon2-cffi-bindings"
+ pypi = "argon2-cffi-bindings/argon2-cffi-bindings-21.2.0.tar.gz"
+
+ version('21.2.0', sha256='bb89ceffa6c791807d1305ceb77dbfacc5aa499891d2c55661c6459651fc39e3')
+
+ depends_on('python@3.6:', type=('build', 'run'))
+ depends_on('py-setuptools@45:', type='build')
+ depends_on('py-setuptools-scm@6.2:', type='build')
+ depends_on('py-cffi@1.0.1:', type=('build', 'run'))