From mboxrd@z Thu Jan 1 00:00:00 1970 From: Cyril Roelandt Subject: [PATCH 08/12] gnu: Add python-oslosphinx. Date: Mon, 12 Oct 2015 23:41:04 +0200 Message-ID: <1444686068-7668-9-git-send-email-tipecaml@gmail.com> References: <1444686068-7668-1-git-send-email-tipecaml@gmail.com> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:54312) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZlkqW-0003iA-R9 for guix-devel@gnu.org; Mon, 12 Oct 2015 17:41:31 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZlkqV-00074N-EE for guix-devel@gnu.org; Mon, 12 Oct 2015 17:41:28 -0400 Received: from mail-wi0-x22f.google.com ([2a00:1450:400c:c05::22f]:33996) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZlkqV-00073r-9P for guix-devel@gnu.org; Mon, 12 Oct 2015 17:41:27 -0400 Received: by wicgb1 with SMTP id gb1so65631433wic.1 for ; Mon, 12 Oct 2015 14:41:26 -0700 (PDT) In-Reply-To: <1444686068-7668-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-oslosphinx, python2-oslosphinx): New variables. --- gnu/packages/openstack.scm | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/gnu/packages/openstack.scm b/gnu/packages/openstack.scm index d6f9ec4..0fa105e 100644 --- a/gnu/packages/openstack.scm +++ b/gnu/packages/openstack.scm @@ -464,6 +464,36 @@ in transmittable and storable formats, such as JSON and MessagePack.") (define-public python2-oslo.serialization (package-with-python2 python-oslo.serialization)) +(define-public python-oslosphinx + (package + (name "python-oslosphinx") + (version "3.1.0") + (source + (origin + (method url-fetch) + (uri (pypi-uri "oslosphinx" version)) + (sha256 + (base32 + "0zcshdc9s1f7hnvg0fm2ps5rak3dpnm8kqg4i21lknhmsvb7p5cb")))) + (build-system python-build-system) + (propagated-inputs + `(("python-requests" ,python-requests))) + (inputs + `(("python-pbr" ,python-pbr) + ("python-docutils" ,python-docutils) + ("python-hacking" ,python-hacking) + ("python-setuptools" ,python-setuptools) + ("python-sphinx" ,python-sphinx))) + (home-page "http://www.openstack.org/") + (synopsis "OpenStack Sphinx Extensions and Theme") + (description + "Theme and extension support for Sphinx documentation from the OpenStack + project.") + (license asl2.0))) + +(define-public python2-oslosphinx + (package-with-python2 python-oslosphinx)) + (define-public python-oslotest (package (name "python-oslotest") -- 2.1.4