forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
dev-python/nbsphinx: Add new package required by nbconvert-4.2.0[doc]
Package-Manager: portage-2.2.28
- Loading branch information
1 parent
73ca5ed
commit e9ec9cc
Showing
3 changed files
with
48 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
DIST nbsphinx-0.2.8.tar.gz 89524 SHA256 81d3905df0d8627f2e1762036fa761c3ed90ebd61c74ebce8ef07778800ec9a4 SHA512 fe73cdab2b6ac67aff48380137d07b8938bdc764a786c66ee4f0ff658aa3db207630a79900555c70b2232afcf3b5332c78495281518a97ca944550d13cb01b04 WHIRLPOOL e4fcf6e87ab37692ad310a3258ab13a8850ed7f3d1de78b9965552df28274736fc63b34724a1f7be3ecf5c6037c0bb06d8f55e2062ca1cc2f9661ce8e3b1c416 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> | ||
<pkgmetadata> | ||
<maintainer type="project"> | ||
<email>[email protected]</email> | ||
<name>Gentoo Science Project</name> | ||
</maintainer> | ||
<longdescription> | ||
nbsphinx is a Sphinx extension that provides a source parser for | ||
*.ipynb files. Custom Sphinx directives are used to show Jupyter | ||
Notebook code cells (and of course their results) in both HTML and | ||
LaTeX output. Un-evaluated notebooks -- i.e. notebooks without | ||
stored output cells -- will be automatically executed during the | ||
Sphinx build process. | ||
</longdescription> | ||
<upstream> | ||
<remote-id type="pypi">nbformat</remote-id> | ||
<remote-id type="github">spatialaudio/nbsphinx</remote-id> | ||
</upstream> | ||
</pkgmetadata> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# Copyright 1999-2016 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
# $Id$ | ||
|
||
EAPI=6 | ||
|
||
PYTHON_COMPAT=( python2_7 python3_{4,5} ) | ||
|
||
inherit distutils-r1 | ||
|
||
DESCRIPTION="Jupyter Notebook Tools for Sphinx" | ||
HOMEPAGE="https://github.com/spatialaudio/nbsphinx/" | ||
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" | ||
|
||
LICENSE="BSD" | ||
SLOT="0" | ||
KEYWORDS="~amd64 ~x86" | ||
IUSE="doc test" | ||
|
||
RDEPEND=" | ||
dev-python/docutils[${PYTHON_USEDEP}] | ||
dev-python/jinja[${PYTHON_USEDEP}] | ||
dev-python/nbconvert[${PYTHON_USEDEP}] | ||
dev-python/nbformat[${PYTHON_USEDEP}] | ||
dev-python/sphinx[${PYTHON_USEDEP}] | ||
" | ||
DEPEND="${RDEPEND}" |