holgersson-overlay/dev-python/hdf5storage/hdf5storage-0.1.15-r1.ebuild
Nils Freydank 52dda2213a
dev-python/hdf5storage: Add missing dep for tests
Package-Manager: Portage-2.3.99, Repoman-2.3.22
Manifest-Sign-Key: 00EFD31F1B60D5DBADB831C1C0ECE6960E54475B
Signed-off-by: Nils Freydank <holgersson@posteo.de>
2020-05-13 08:56:29 +02:00

39 lines
753 B
Bash

# Copyright 2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
PYTHON_COMPAT=( python3_{7,8} )
inherit distutils-r1
DESCRIPTION="Python library for using HDF5 formatted files"
HOMEPAGE="https://github.com/frejanordsiek/hdf5storage http://pythonhosted.org/hdf5storage"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.zip"
LICENSE="BSD-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="doc test"
RESTRICT="!test? ( test )"
DEPEND=""
RDEPEND="
${DEPEND}
dev-python/h5py[${PYTHON_USEDEP}]
dev-python/numpy[${PYTHON_USEDEP}]
"
BDEPEND="
doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
test? (
dev-python/nose[${PYTHON_USEDEP}]
|| (
dev-lang/julia
dev-lang/julia-bin
)
)
"
src_test(){
esetup.py nosetests
}