diff options
author | Alfredo Tupone <tupone@gentoo.org> | 2021-05-15 18:53:30 +0200 |
---|---|---|
committer | Alfredo Tupone <tupone@gentoo.org> | 2021-05-15 18:53:30 +0200 |
commit | 4a6dd570db4e52452a8fcb186336e07037c4be05 (patch) | |
tree | 715c5b1e54547a4ebb87a310a466627d73ec23fc /sci-visualization | |
parent | dev-lang/mercury: update JDK dependency (diff) | |
download | gentoo-4a6dd570db4e52452a8fcb186336e07037c4be05.tar.gz gentoo-4a6dd570db4e52452a8fcb186336e07037c4be05.tar.bz2 gentoo-4a6dd570db4e52452a8fcb186336e07037c4be05.zip |
sci-visualization/jupyter-dash: add jupyter-dash
Package-Manager: Portage-3.0.18, Repoman-3.0.2
Signed-off-by: Alfredo Tupone <tupone@gentoo.org>
Diffstat (limited to 'sci-visualization')
-rw-r--r-- | sci-visualization/jupyter-dash/Manifest | 1 | ||||
-rw-r--r-- | sci-visualization/jupyter-dash/jupyter-dash-0.4.0.ebuild | 30 | ||||
-rw-r--r-- | sci-visualization/jupyter-dash/metadata.xml | 16 |
3 files changed, 47 insertions, 0 deletions
diff --git a/sci-visualization/jupyter-dash/Manifest b/sci-visualization/jupyter-dash/Manifest new file mode 100644 index 000000000000..5ee181a10bb6 --- /dev/null +++ b/sci-visualization/jupyter-dash/Manifest @@ -0,0 +1 @@ +DIST jupyter-dash-0.4.0.tar.gz 42855 BLAKE2B 6ee097892e8175d72883005a4b8097e1069d3550d845dc8728991c78d437d74f571e3e1e4fddf7c8df716c0921a5910c9fbc654f0a56c0f177f14c7b2c1bd336 SHA512 16774dfe54122096cdf672408af8fb7f0246ba7db1429eeee21a9b10645990d859208e13b743119c90e5b0ae042eeb32e91e56205139d9cf792f5995e467ccf9 diff --git a/sci-visualization/jupyter-dash/jupyter-dash-0.4.0.ebuild b/sci-visualization/jupyter-dash/jupyter-dash-0.4.0.ebuild new file mode 100644 index 000000000000..87d8aedc3a92 --- /dev/null +++ b/sci-visualization/jupyter-dash/jupyter-dash-0.4.0.ebuild @@ -0,0 +1,30 @@ +# Copyright 2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{8,9} ) +inherit distutils-r1 + +DESCRIPTION="Plotly Dash apps from within Jupyter environments" +HOMEPAGE="https://plotly.com/dash/" +SRC_URI="https://github.com/plotly/${PN}/archive/refs/tags/v${PV}.tar.gz + -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +DEPEND="" +RDEPEND="${DEPEND} + dev-python/ansi2html[${PYTHON_USEDEP}] + sci-visualization/dash[${PYTHON_USEDEP}] + dev-python/ipykernel[${PYTHON_USEDEP}] + dev-python/requests[${PYTHON_USEDEP}] + dev-python/retrying[${PYTHON_USEDEP}]" +BDEPEND="" + +src_install () { + distutils-r1_src_install + mv "${D}"/usr/etc "${D}"/ || die +} diff --git a/sci-visualization/jupyter-dash/metadata.xml b/sci-visualization/jupyter-dash/metadata.xml new file mode 100644 index 000000000000..50ec7aff92b7 --- /dev/null +++ b/sci-visualization/jupyter-dash/metadata.xml @@ -0,0 +1,16 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <maintainer type="person"> + <email>tupone@gentoo.org</email> + <name>Tupone Alfredo</name> + </maintainer> + <longdescription lang="en"> + This library makes it easy to develop Plotly Dash apps interactively + from within Jupyter environments (e.g. classic Notebook, JupyterLab, + Visual Studio Code notebooks, nteract, PyCharm notebooks, etc.). + </longdescription> + <upstream> + <remote-id type="github">plotly/jupyter-dash</remote-id> + </upstream> +</pkgmetadata> |