From e8f895d2073e56ef184485fdc2b51e04a636d1d8 Mon Sep 17 00:00:00 2001 From: David Seifert Date: Mon, 17 Aug 2020 18:49:15 +0200 Subject: sci-biology/biopandas: Version bump to 0.2.7 Bug: https://bugs.gentoo.org/718470 Package-Manager: Portage-3.0.3, Repoman-3.0.0 Signed-off-by: David Seifert --- sci-biology/biopandas/biopandas-0.2.7.ebuild | 40 ++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 sci-biology/biopandas/biopandas-0.2.7.ebuild (limited to 'sci-biology/biopandas/biopandas-0.2.7.ebuild') diff --git a/sci-biology/biopandas/biopandas-0.2.7.ebuild b/sci-biology/biopandas/biopandas-0.2.7.ebuild new file mode 100644 index 000000000000..9be9a8ac4a3c --- /dev/null +++ b/sci-biology/biopandas/biopandas-0.2.7.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{6..9} ) + +inherit distutils-r1 + +MY_PN="BioPandas" +MY_P="${MY_PN}-${PV}" + +DESCRIPTION="Molecular Structures in Pandas DataFrames" +HOMEPAGE=" + https://rasbt.github.io/biopandas/ + https://github.com/rasbt/biopandas + https://pypi.org/project/BioPandas/" +SRC_URI="mirror://pypi/${MY_P:0:1}/${MY_PN}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" +IUSE="test" +RESTRICT="!test? ( test )" + +RDEPEND=" + dev-python/numpy[${PYTHON_USEDEP}] + dev-python/pandas[${PYTHON_USEDEP}] + sci-libs/scipy[${PYTHON_USEDEP}]" + +distutils_enable_tests nose + +python_test() { + "${EPYTHON}" --version || die + "${EPYTHON}" -c "import numpy; print('numpy %s' % numpy.__version__)" || die + "${EPYTHON}" -c "import scipy; print('scipy %s' % scipy.__version__)" || die + "${EPYTHON}" -c "import pandas; print('pandas %s' % pandas.__version__)" || die + + nosetests -s --verbose ${PN} || die +} -- cgit v1.2.3-65-gdbad