From mboxrd@z Thu Jan 1 00:00:00 1970 From: Cyril Roelandt Subject: [PATCH 07/11] gnu: Add oslo.serialization. Date: Thu, 16 Jul 2015 01:32:27 +0200 Message-ID: <1437003151-23838-8-git-send-email-tipecaml@gmail.com> References: <1437003151-23838-1-git-send-email-tipecaml@gmail.com> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:48549) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZFWAW-0003Uh-UO for guix-devel@gnu.org; Wed, 15 Jul 2015 19:32:54 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZFWAV-0001PP-IM for guix-devel@gnu.org; Wed, 15 Jul 2015 19:32:52 -0400 Received: from mail-wg0-x229.google.com ([2a00:1450:400c:c00::229]:36379) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZFWAV-0001Oy-AA for guix-devel@gnu.org; Wed, 15 Jul 2015 19:32:51 -0400 Received: by wgxm20 with SMTP id m20so45078390wgx.3 for ; Wed, 15 Jul 2015 16:32:50 -0700 (PDT) In-Reply-To: <1437003151-23838-1-git-send-email-tipecaml@gmail.com> List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org To: guix-devel@gnu.org * gnu/packages/openstack.scm (python-oslo.serialization, python2-oslo.serialization): New variables. --- gnu/packages/openstack.scm | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) diff --git a/gnu/packages/openstack.scm b/gnu/packages/openstack.scm index 584a530..c67108f 100644 --- a/gnu/packages/openstack.scm +++ b/gnu/packages/openstack.scm @@ -323,6 +323,44 @@ pipeline and used by various modules such as logging.") (define-public python2-oslo.i18n (package-with-python2 python-oslo.i18n)) +(define-public python-oslo.serialization + (package + (name "python-oslo.serialization") + (version "1.7.0") + (source + (origin + (method url-fetch) + (uri (string-append + "https://pypi.python.org/packages/source/o/oslo.serialization/oslo.serialization-" + version + ".tar.gz")) + (sha256 + (base32 + "04k47xqdv7wpdd4j60856h489h3vsp86fqzszhq5ba9ypblk4kqn")))) + (build-system python-build-system) + (inputs + `(("python-babel" ,python-babel) + ("python-iso8601" ,python-iso8601) + ;("python-msgpack-python" ,python-msgpack-python) + ("python-oslo.utils" ,python-oslo.utils) + ("python-pbr" ,python-pbr) + ("python-pytz" ,python-pytz) + ("python-setuptools" ,python-setuptools) + ("python-simplejson" ,python-simplejson) + ("python-six" ,python-six) + ;; Tests. + ("python-mock" ,python-mock) + ("python-netaddr" ,python-netaddr) + ("python-oslo.i18n" ,python-oslo.i18n) + ("python-oslotest" ,python-oslotest))) + (home-page "http://launchpad.net/oslo") + (synopsis "Oslo Serialization library") + (description "Oslo Serialization library") + (license asl2.0))) + +(define-public python2-oslo.serialization + (package-with-python2 python-oslo.serialization)) + (define-public python-oslotest (package (name "python-oslotest") -- 2.1.4