all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Cyril Roelandt <tipecaml@gmail.com>
To: guix-devel@gnu.org
Subject: [PATCH 4/5] gnu: Add python-os-client-config
Date: Sun, 16 Aug 2015 16:41:51 +0200	[thread overview]
Message-ID: <1439736112-28557-5-git-send-email-tipecaml@gmail.com> (raw)
In-Reply-To: <1439736112-28557-1-git-send-email-tipecaml@gmail.com>

* gnu/packages/openstack.scm (python-os-client-config,
                              python2-os-client-config): New variables.
---
 gnu/packages/openstack.scm | 39 +++++++++++++++++++++++++++++++++++++++
 1 file changed, 39 insertions(+)

diff --git a/gnu/packages/openstack.scm b/gnu/packages/openstack.scm
index eb3c606..1a7820a 100644
--- a/gnu/packages/openstack.scm
+++ b/gnu/packages/openstack.scm
@@ -55,6 +55,45 @@ with mox as possible, but small enhancements have been made. The library was
 tested on Python version 3.2, 2.7 and 2.6.")
     (license asl2.0)))
 
+(define-public python-os-client-config
+  (package
+    (name "python-os-client-config")
+    (version "1.4.0")
+    (source
+      (origin
+        (method url-fetch)
+        (uri (string-append
+               "https://pypi.python.org/packages/source/o/os-client-config/os-client-config-"
+               version
+               ".tar.gz"))
+        (sha256
+          (base32
+            "14png6ml3zbbilh8bihav24f8vig9lyijwynnjcvazdxxrzvwq9j"))))
+    (build-system python-build-system)
+    (arguments
+     `(#:tests? #f)) ;; Circular dependency with python-oslotest
+    (inputs
+      `(("python-appdirs" ,python-appdirs)
+        ("python-fixtures" ,python-fixtures)
+        ("python-mimeparse" ,python-mimeparse)
+        ("python-pbr" ,python-pbr)
+        ("python-pyyaml" ,python-pyyaml)
+        ("python-testrepository" ,python-testrepository)
+        ("python-setuptools" ,python-setuptools)
+        ("python-testscenarios" ,python-testscenarios)
+        ("python-testtools" ,python-testtools)))
+    (home-page "http://www.openstack.org/")
+    (synopsis
+      "OpenStack Client Configuration Library")
+    (description
+      "The OpenStack Client Configuration Library is a library for collecting
+  client configuration for using an OpenStack cloud in a consistent and
+  comprehensive manner.")
+    (license asl2.0)))
+
+(define-public python2-os-client-config
+  (package-with-python2 python-os-client-config))
+
 (define-public python2-mox3
   (package-with-python2 python-mox3))
 
-- 
2.1.4

  parent reply	other threads:[~2015-08-16 14:42 UTC|newest]

Thread overview: 16+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-08-16 14:41 [PATCH 0/5] Add oslotest Cyril Roelandt
2015-08-16 14:41 ` [PATCH 1/5] gnu: add python-appdirs Cyril Roelandt
2015-08-25 21:16   ` Ludovic Courtès
2015-08-16 14:41 ` [PATCH 2/5] gnu: Add python-pbr Cyril Roelandt
2015-08-25 21:18   ` Ludovic Courtès
2015-08-16 14:41 ` [PATCH 3/5] gnu: Add python-mox3 Cyril Roelandt
2015-08-25 21:19   ` Ludovic Courtès
2015-08-16 14:41 ` Cyril Roelandt [this message]
2015-08-25 21:20   ` [PATCH 4/5] gnu: Add python-os-client-config Ludovic Courtès
2015-08-25 22:24     ` Mathieu Lirzin
2015-08-26  8:39       ` Cyril Roelandt
2015-08-26 10:31         ` Mathieu Lirzin
2015-08-26 11:50       ` Alex Kost
2015-08-27  9:13         ` Ludovic Courtès
2015-08-16 14:41 ` [PATCH 5/5] gnu: Add python-oslotest Cyril Roelandt
2015-08-25 21:21   ` Ludovic Courtès

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1439736112-28557-5-git-send-email-tipecaml@gmail.com \
    --to=tipecaml@gmail.com \
    --cc=guix-devel@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.