summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorManuela Kuhn <36827019+manuelakuhn@users.noreply.github.com>2021-07-05 12:45:29 +0200
committerGitHub <noreply@github.com>2021-07-05 12:45:29 +0200
commit04289b20096368aebdcdfcd5859038377034d269 (patch)
treed5f989786c89b98b8531c4ba8d2fd76100401834 /var
parentd764b776d7dcaa354f4f24e9d68a2953faf88ccf (diff)
downloadspack-04289b20096368aebdcdfcd5859038377034d269.tar.gz
spack-04289b20096368aebdcdfcd5859038377034d269.tar.bz2
spack-04289b20096368aebdcdfcd5859038377034d269.tar.xz
spack-04289b20096368aebdcdfcd5859038377034d269.zip
py-keyrings-alt: add new package (#24704)
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/py-keyrings-alt/package.py19
1 files changed, 19 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-keyrings-alt/package.py b/var/spack/repos/builtin/packages/py-keyrings-alt/package.py
new file mode 100644
index 0000000000..5d68941994
--- /dev/null
+++ b/var/spack/repos/builtin/packages/py-keyrings-alt/package.py
@@ -0,0 +1,19 @@
+# Copyright 2013-2021 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 PyKeyringsAlt(PythonPackage):
+ """Alternate keyring implementations"""
+
+ homepage = "https://github.com/jaraco/keyrings.alt"
+ pypi = "keyrings.alt/keyrings.alt-4.0.2.tar.gz"
+
+ version('4.0.2', sha256='cc475635099d6edd7e475c5a479e5b4da5e811a3af04495a1e9ada488d16fe25')
+
+ depends_on('python@3.6:', type=('build', 'run'))
+ depends_on('py-setuptools', type='build')
+ depends_on('py-setuptools-scm+toml@3.4.1:', type='build')