[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/05: gnu: Add python-sphinxcontrib-programoutput.
From: |
Leo Famulari |
Subject: |
01/05: gnu: Add python-sphinxcontrib-programoutput. |
Date: |
Mon, 22 Feb 2016 06:01:20 +0000 |
lfam pushed a commit to branch master
in repository guix.
commit 3276517cdcd2dfe7f2bad40eb22d94841775056a
Author: Leo Famulari <address@hidden>
Date: Fri Feb 5 03:16:18 2016 -0500
gnu: Add python-sphinxcontrib-programoutput.
* gnu/packages/python.scm (python-sphinxcontrib-programoutput,
python2-sphinxcontrib-programoutput): New variables.
---
gnu/packages/python.scm | 27 +++++++++++++++++++++++++++
1 files changed, 27 insertions(+), 0 deletions(-)
diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index 740126f..91fa256 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -8104,3 +8104,30 @@ programmatically interfacing with your system's
$EDITOR.")
(inherit (package-with-python2
(strip-python2-variant python-editor)))
(inputs `(("python2-setuptools" ,python2-setuptools)))))
+
+(define-public python-sphinxcontrib-programoutput
+ (package
+ (name "python-sphinxcontrib-programoutput")
+ (version "0.8")
+ (source (origin
+ (method url-fetch)
+ (uri (pypi-uri "sphinxcontrib-programoutput" version))
+ (sha256
+ (base32
+ "098as6z1s0gb4dh5xcr1fd2vpm91zj93jzvgawspxf5s4hqs0xhp"))))
+ (build-system python-build-system)
+ (propagated-inputs
+ `(("python-docutils" ,python-docutils)
+ ("python-sphinx" ,python-sphinx)))
+ (synopsis "Sphinx extension to include program output")
+ (description "A Sphinx extension to literally insert the output of
arbitrary
+commands into documents, helping you to keep your command examples up to
date.")
+ (home-page "https://github.com/lunaryorn/sphinxcontrib-programoutput")
+ (license bsd-2)
+ (properties `((python2-variant . ,(delay
python2-sphinxcontrib-programoutput))))))
+
+(define-public python2-sphinxcontrib-programoutput
+ (package
+ (inherit (package-with-python2
+ (strip-python2-variant python-sphinxcontrib-programoutput)))
+ (native-inputs `(("python2-setuptools" ,python2-setuptools)))))