[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
07/12: gnu: Add python-oslosphinx.
From: |
Cyril Roelandt |
Subject: |
07/12: gnu: Add python-oslosphinx. |
Date: |
Tue, 03 Nov 2015 20:39:27 +0000 |
steap pushed a commit to branch master
in repository guix.
commit f4c7dc5582d02de79fcec640046486b86024bf1d
Author: Cyril Roelandt <address@hidden>
Date: Mon Oct 12 00:48:40 2015 +0200
gnu: Add python-oslosphinx.
* gnu/packages/openstack.scm (python-oslosphinx,
python2-oslosphinx): New variables.
---
gnu/packages/openstack.scm | 30 ++++++++++++++++++++++++++++++
1 files changed, 30 insertions(+), 0 deletions(-)
diff --git a/gnu/packages/openstack.scm b/gnu/packages/openstack.scm
index fc86881..34e482b 100644
--- a/gnu/packages/openstack.scm
+++ b/gnu/packages/openstack.scm
@@ -465,6 +465,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
+ "This package provides themes and extensions 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")
- branch master updated (f8ae32a -> 465b61f), Cyril Roelandt, 2015/11/03
- 04/12: gnu: Add python-mccabe 0.2.1, Cyril Roelandt, 2015/11/03
- 05/12: gnu: Add python-flake8-2.2.4, Cyril Roelandt, 2015/11/03
- 01/12: guix: Add a "pypi-uri" helper method., Cyril Roelandt, 2015/11/03
- 02/12: import: pypi: Use "pypi-uri" instead of building the URL manually., Cyril Roelandt, 2015/11/03
- 03/12: gnu: Update python-requests., Cyril Roelandt, 2015/11/03
- 06/12: gnu: Add python-hacking., Cyril Roelandt, 2015/11/03
- 07/12: gnu: Add python-oslosphinx.,
Cyril Roelandt <=
- 08/12: gnu: Add python-os-testr., Cyril Roelandt, 2015/11/03
- 09/12: gnu: paramiko: Move python-pycrypto to the propagated inputs., Cyril Roelandt, 2015/11/03
- 10/12: gnu: Add python-oslo.log., Cyril Roelandt, 2015/11/03
- 12/12: gnu: Add python-tempest-lib., Cyril Roelandt, 2015/11/03
- 11/12: gnu: python-oslotest: move mox3 to the propagated-inputs, Cyril Roelandt, 2015/11/03