Files
gentoo/dev-python/ipdb/ipdb-0.10.3.ebuild
Michał Górny 4dee650027 dev-python/ipdb: Enable py3.7
Signed-off-by: Michał Górny <mgorny@gentoo.org>
2020-04-23 10:39:25 +02:00

30 lines
553 B
Bash

# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=5
PYTHON_COMPAT=( python3_{6,7} )
inherit distutils-r1
DESCRIPTION="IPython-enabled pdb"
HOMEPAGE="https://pypi.org/project/ipdb/"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ~arm ~arm64 ppc64 x86"
IUSE=""
RDEPEND="dev-python/ipython[${PYTHON_USEDEP}]"
DEPEND="${RDEPEND}
app-arch/unzip
dev-python/setuptools[${PYTHON_USEDEP}]
"
DOCS=( HISTORY.txt )
python_test() {
esetup.py test
}