guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

02/02: gnu: Add oslo.i18n.


From: Cyril Roelandt
Subject: 02/02: gnu: Add oslo.i18n.
Date: Mon, 07 Sep 2015 22:16:53 +0000

steap pushed a commit to branch master
in repository guix.

commit 8531b326f166403298f238817db728c2d8df6bb9
Author: Cyril Roelandt <address@hidden>
Date:   Wed Sep 2 00:59:42 2015 +0200

    gnu: Add oslo.i18n.
    
    * gnu/packages/openstack.scm (python-oslo.i18n, python2-oslo.i18n): New
      variables.
---
 gnu/packages/openstack.scm |   37 +++++++++++++++++++++++++++++++++++++
 1 files changed, 37 insertions(+), 0 deletions(-)

diff --git a/gnu/packages/openstack.scm b/gnu/packages/openstack.scm
index a534147..1641476 100644
--- a/gnu/packages/openstack.scm
+++ b/gnu/packages/openstack.scm
@@ -140,6 +140,43 @@ and sensible default behaviors into your setuptools run.")
   (package-with-python2 python-pbr))
 
 ;; Packages from the Oslo library
+(define-public python-oslo.i18n
+  (package
+    (name "python-oslo.i18n")
+    (version "2.5.0")
+    (source
+      (origin
+        (method url-fetch)
+        (uri (string-append
+               "https://pypi.python.org/packages/source/o/oslo.i18n/oslo.i18n-";
+               version
+               ".tar.gz"))
+        (sha256
+          (base32
+            "1kg72mqldlri3x0bhxai7j979czrd7mf8s3iflvvv0x9kn9ah4cw"))))
+    (build-system python-build-system)
+    (propagated-inputs
+      `(("python-babel" ,python-babel)
+        ("python-six" ,python-six)))
+    (inputs
+      `(("python-pbr" ,python-pbr)
+        ("python-setuptools" ,python-setuptools)
+        ;; Tests
+        ("python-mock" ,python-mock)
+        ("python-mox3" ,python-mox3)
+        ("python-oslotest" ,python-oslotest)
+        ("python-testscenarios" ,python-testscenarios)))
+    (home-page "http://launchpad.net/oslo";)
+    (synopsis "Oslo internationalization (i18n) library")
+    (description
+      "The oslo.i18n library contain utilities for working with
+internationalization (i18n) features, especially translation for text strings
+in an application or library.")
+    (license asl2.0)))
+
+(define-public python2-oslo.i18n
+  (package-with-python2 python-oslo.i18n))
+
 (define-public python-oslotest
   (package
     (name "python-oslotest")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]