summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorHarmen Stoppels <harmenstoppels@gmail.com>2021-08-04 09:31:44 +0200
committerGitHub <noreply@github.com>2021-08-04 07:31:44 +0000
commit63ac1b66203c218499442ae2a4bb4d77452dc150 (patch)
tree038ad38b478a59af4386016c0ce861f6a52bf1f7 /var
parent574ade6f7671a5be61ee7880aecce3f7bc436be1 (diff)
downloadspack-63ac1b66203c218499442ae2a4bb4d77452dc150.tar.gz
spack-63ac1b66203c218499442ae2a4bb4d77452dc150.tar.bz2
spack-63ac1b66203c218499442ae2a4bb4d77452dc150.tar.xz
spack-63ac1b66203c218499442ae2a4bb4d77452dc150.zip
Add py-oslo-config (#25216)
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/py-oslo-config/package.py33
1 files changed, 33 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-oslo-config/package.py b/var/spack/repos/builtin/packages/py-oslo-config/package.py
new file mode 100644
index 0000000000..b637a58985
--- /dev/null
+++ b/var/spack/repos/builtin/packages/py-oslo-config/package.py
@@ -0,0 +1,33 @@
+# 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 PyOsloConfig(PythonPackage):
+ """
+ The Oslo configuration API supports parsing command line arguments and .ini
+ style configuration files.
+ """
+
+ homepage = "https://docs.openstack.org/oslo.config/"
+ pypi = "oslo.config/oslo.config-8.7.1.tar.gz"
+
+ maintainers = ['haampie']
+
+ version('8.7.1', sha256='a0c346d778cdc8870ab945e438bea251b5f45fae05d6d99dfe4953cca2277b60')
+
+ depends_on('python@3.6:', type=('build', 'run'))
+ depends_on('py-setuptools', type='build')
+ depends_on('py-pbr@2.0.0:', type='build')
+
+ depends_on('py-debtcollector@1.2.0:', type=('build', 'run'))
+ depends_on('py-netaddr@0.7.18:', type=('build', 'run'))
+ depends_on('py-stevedore@1.20.0:', type=('build', 'run'))
+ depends_on('py-oslo-i18n@3.15.3:', type=('build', 'run'))
+ depends_on('py-rfc3986@1.2.0:', type=('build', 'run'))
+ depends_on('py-pyyaml@5.1:', type=('build', 'run'))
+ depends_on('py-requests@2.18.0:', type=('build', 'run'))
+ depends_on('py-importlib-metadata@1.7.0:', when='^python@:3.7', type=('build', 'run'))