1
0
mirror of synced 2024-06-26 06:12:54 +02:00
TheChymera-overlay/dev-python/python-gantt/python-gantt-0.6.0_p1.ebuild
Horea Christian 8710ce7676
dev-python/python-gantt: version bump 0.6.0_p1 ahead of Gentoo Science
Package-Manager: Portage-2.3.97, Repoman-2.3.22
Signed-off-by: Horea Christian <chr@chymera.eu>
2020-04-09 22:28:08 -04:00

38 lines
893 B
Bash

# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
PYTHON_COMPAT=( python3_{6,7} )
inherit distutils-r1
MY_HASH="8ed033086d2974e15da61b770204e043348bb9d6"
DESCRIPTION="Draw Gantt charts from Python"
HOMEPAGE="https://pypi.org/project/python-gantt/"
SRC_URI="https://github.com/stefanSchinkel/gantt/archive/${MY_HASH}.tar.gz"
#SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="test"
DEPEND="test? ( >=dev-python/pytest-5.1.2[${PYTHON_USEDEP}] )"
RDEPEND="
>=dev-python/matplotlib-3.0.3[${PYTHON_USEDEP}]
>=dev-python/numpy-1.16.3[${PYTHON_USEDEP}]
"
S="${WORKDIR}/gantt-${MY_HASH}"
python_prepare() {
sed -i\
-e "s/matplotlib==3.0.3/matplotlib/g"\
-e "s/numpy==1.16.3/numpy/g"\
setup.py || die
distutils-r1_python_prepare_all
}
distutils_enable_tests pytest