summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/py-python-keystoneclient/package.py35
1 files changed, 35 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-python-keystoneclient/package.py b/var/spack/repos/builtin/packages/py-python-keystoneclient/package.py
new file mode 100644
index 0000000000..dc61adb66b
--- /dev/null
+++ b/var/spack/repos/builtin/packages/py-python-keystoneclient/package.py
@@ -0,0 +1,35 @@
+# 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 PyPythonKeystoneclient(PythonPackage):
+ """
+ This is a client for the OpenStack Identity API, implemented by the
+ Keystone team
+ """
+
+ homepage = "https://docs.openstack.org/python-keystoneclient"
+ pypi = "python-keystoneclient/python-keystoneclient-4.2.0.tar.gz"
+
+ maintainers = ['haampie']
+
+ version('4.2.0', sha256='0248426e483b95de395086482c077d48e45990d3b1a3e334b2ec8b2e108f5a8a')
+
+ depends_on('python@3.6:', type=('build', 'run'))
+
+ depends_on('py-pbr@2.0.0:2.0.999,2.1.1:', type='build')
+ depends_on('py-setuptools', type='build')
+
+ depends_on('py-debtcollector@1.2.0:', type=('build', 'run'))
+ depends_on('py-keystoneauth1@3.4.0:', type=('build', 'run'))
+ depends_on('py-oslo-config@5.2.0:', type=('build', 'run'))
+ depends_on('py-oslo-i18n@3.15.3:', type=('build', 'run'))
+ depends_on('py-oslo-serialization@2.18.0:2.19.0,2.19.2:', type=('build', 'run'))
+ depends_on('py-oslo-utils@3.33.0:', type=('build', 'run'))
+ depends_on('py-requests@2.14.2:', type=('build', 'run'))
+ depends_on('py-six@1.10.0:', type=('build', 'run'))
+ depends_on('py-stevedore@1.20.0:', type=('build', 'run'))