blob: 89000b79364d6411169fbe35b84e7f8a2cbd2b9d [file] [log] [blame]
Andrew Geisslerd221e032020-07-10 16:13:21 -05001SUMMARY = "Provides both a high- and low-level interface to the HDF5 library from Python."
Brad Bishop19323692019-04-05 15:28:33 -04002HOMEPAGE = "https://www.h5py.org/"
3SECTION = "devel/python"
Brad Bishop2d39a062019-10-28 08:33:36 -04004LICENSE = "BSD-3-Clause"
Andrew Geisslerd221e032020-07-10 16:13:21 -05005LIC_FILES_CHKSUM = "file://LICENSE;md5=113251d71fb0384712c719b567261c5c"
Brad Bishop19323692019-04-05 15:28:33 -04006
Andrew Geisslerd159c7f2021-09-02 21:05:58 -05007SRC_URI[sha256sum] = "ee1c683d91ab010d5e85cb61e8f9e7ee0d8eab545bf3dd50a9618f1d0e8f615e"
Andrew Geisslerd221e032020-07-10 16:13:21 -05008
Patrick Williams213cb262021-08-07 19:21:33 -05009SRC_URI:append = " \
Andrew Geisslerac970dd2021-02-12 15:32:45 -060010 file://0001-setup_build.py-avoid-absolute-path.patch \
Andrew Geissler97771a32021-03-05 15:23:11 -060011 file://0001-setup.py-Fix-numpy-version.patch \
Brad Bishop19323692019-04-05 15:28:33 -040012 "
Brad Bishop19323692019-04-05 15:28:33 -040013
Andrew Geissler5199d832021-09-24 16:47:35 -050014inherit pkgconfig pypi setuptools3
Brad Bishop19323692019-04-05 15:28:33 -040015
16BBCLASSEXTEND = "native"
17
18DEPENDS = "python3-pkgconfig-native \
19 python3-cython-native \
20 python3-numpy-native \
21 python3-six-native \
Andrew Geisslere34f8962021-04-15 15:53:51 -050022 hdf5-native \
Brad Bishop19323692019-04-05 15:28:33 -040023 python3 \
24 hdf5 \
25 "
26
Patrick Williams213cb262021-08-07 19:21:33 -050027RDEPENDS:${PN} = "python3-numpy \
Brad Bishop19323692019-04-05 15:28:33 -040028 python3-six \
Andrew Geisslerd159c7f2021-09-02 21:05:58 -050029 python3-json \
Brad Bishop19323692019-04-05 15:28:33 -040030 "
31
Andrew Geisslerd221e032020-07-10 16:13:21 -050032export HDF5_VERSION="1.8.21"