summaryrefslogtreecommitdiff
path: root/gnu/packages/openstack.scm
diff options
context:
space:
mode:
authorHartmut Goebel <h.goebel@crazy-compilers.com>2022-07-20 09:53:45 +0200
committerHartmut Goebel <h.goebel@crazy-compilers.com>2022-08-10 09:34:13 +0200
commite2857167b1f49888c4c216c5735257350b3e161e (patch)
tree6b65f6d6d2e06d3336af470a67d04fb6c3d59635 /gnu/packages/openstack.scm
parentb5801efaa33af9b46274b67807d4e665b2b685c1 (diff)
gnu: Add python-os-service-types.
* gnu/packages/openstack.scm (python-os-service-types): New variable.
Diffstat (limited to 'gnu/packages/openstack.scm')
-rw-r--r--gnu/packages/openstack.scm27
1 files changed, 27 insertions, 0 deletions
diff --git a/gnu/packages/openstack.scm b/gnu/packages/openstack.scm
index 0721d27dbff..e132f70832c 100644
--- a/gnu/packages/openstack.scm
+++ b/gnu/packages/openstack.scm
@@ -7,6 +7,7 @@
7;;; Copyright © 2020, 2021 Ricardo Wurmus <rekado@elephly.net> 7;;; Copyright © 2020, 2021 Ricardo Wurmus <rekado@elephly.net>
8;;; Copyright © 2020 Maxim Cournoyer <maxim.cournoyer@gmail.com> 8;;; Copyright © 2020 Maxim Cournoyer <maxim.cournoyer@gmail.com>
9;;; Copyright © 2022 Tanguy Le Carrour <tanguy@bioneland.org> 9;;; Copyright © 2022 Tanguy Le Carrour <tanguy@bioneland.org>
10;;; Copyright © 2022 Hartmut Goebel <h.goebel@crazy-compilers.com>
10;;; 11;;;
11;;; This file is part of GNU Guix. 12;;; This file is part of GNU Guix.
12;;; 13;;;
@@ -251,6 +252,32 @@ to docs.openstack.org and developer.openstack.org.")
251 comprehensive manner.") 252 comprehensive manner.")
252 (license asl2.0))) 253 (license asl2.0)))
253 254
255(define-public python-os-service-types
256 (package
257 (name "python-os-service-types")
258 (version "1.7.0")
259 (source (origin
260 (method url-fetch)
261 (uri (pypi-uri "os-service-types" version))
262 (sha256
263 (base32
264 "0v4chwr5jykkvkv4w7iaaic7gb06j6ziw7xrjlwkcf92m2ch501i"))))
265 (build-system python-build-system)
266 (arguments
267 ;; The tests are disabled to avoid a circular dependency with
268 ;; python-keystoneauth1.
269 `(#:tests? #f))
270 (native-inputs (list python-pbr))
271 (home-page "https://docs.openstack.org/os-service-types/latest/")
272 (synopsis "Library for consuming OpenStack Service Types Authority data")
273 (description "The @emph{OpenStack Service Types Authority} contains
274information about officiag OpenStack services and their historical
275service-type aliases. The data is in JSON and the latest data should always
276be used. This simple library exists to allow for easy consumption of the
277data, along with a built-in version of the data to use in case network access
278is for some reason not possible and local caching of the fetched data.")
279 (license asl2.0)))
280
254(define-public python-os-testr 281(define-public python-os-testr
255 (package 282 (package
256 (name "python-os-testr") 283 (name "python-os-testr")