2023-02-08 22:20:56 +01:00
|
|
|
# Copyright 2020-2023 Gentoo Authors
|
2021-05-30 16:21:20 +02:00
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
|
2021-07-10 19:09:22 +02:00
|
|
|
EAPI="8"
|
2021-05-30 16:21:20 +02:00
|
|
|
|
2022-11-22 22:38:13 +01:00
|
|
|
DISTUTILS_USE_PEP517=setuptools
|
|
|
|
PYTHON_COMPAT=( python3_{10..11} )
|
2023-03-02 23:14:04 +01:00
|
|
|
inherit distutils-r1 pypi
|
2021-05-30 16:21:20 +02:00
|
|
|
|
2022-12-31 16:17:59 +01:00
|
|
|
DESCRIPTION="Python library for using HDF5 formatted files, incl. MAT files"
|
|
|
|
HOMEPAGE="
|
|
|
|
https://github.com/frejanordsiek/hdf5storage
|
|
|
|
https://pythonhosted.org/hdf5storage/
|
|
|
|
https://pypi.org/project/hdf5storage/
|
|
|
|
"
|
2021-05-30 16:21:20 +02:00
|
|
|
|
|
|
|
LICENSE="BSD-2"
|
|
|
|
SLOT="0"
|
|
|
|
KEYWORDS="~amd64 ~x86"
|
2022-12-31 16:17:59 +01:00
|
|
|
IUSE="doc"
|
|
|
|
# Tests need nose which is getting cleaned from main tree.
|
|
|
|
RESTRICT="test"
|
2021-05-30 16:21:20 +02:00
|
|
|
|
|
|
|
DEPEND=""
|
|
|
|
RDEPEND="
|
|
|
|
${DEPEND}
|
|
|
|
dev-python/h5py[${PYTHON_USEDEP}]
|
|
|
|
dev-python/numpy[${PYTHON_USEDEP}]
|
|
|
|
"
|
|
|
|
BDEPEND="
|
|
|
|
app-arch/unzip
|
|
|
|
doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
|
|
|
|
"
|