blob: 0b2685f17351216f014d921da33d23b3fc52d454 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
# Copyright 2021-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
PYTHON_COMPAT=( python3_{8..10} )
inherit distutils-r1
DESCRIPTION="Python framework for building ML & data science web apps"
HOMEPAGE="https://github.com/plotly/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/future[${PYTHON_USEDEP}]
sci-visualization/dash-table[${PYTHON_USEDEP}]
sci-visualization/dash-html-components[${PYTHON_USEDEP}]
sci-visualization/dash-core-components[${PYTHON_USEDEP}]
dev-python/plotly[${PYTHON_USEDEP}]
dev-python/flask-compress[${PYTHON_USEDEP}]"
BDEPEND=""
src_prepare() {
distutils-r1_src_prepare
cd dash-renderer
distutils-r1_src_prepare
}
src_configure() {
distutils-r1_src_configure
cd dash-renderer
distutils-r1_src_configure
}
src_compile() {
distutils-r1_src_compile
cd dash-renderer
distutils-r1_src_compile
}
src_install() {
distutils-r1_src_install
cd dash-renderer
distutils-r1_src_install
}
|