# Maintainer: Astro Benzene pkgname=python-healpy _pyname=${pkgname#python-} pkgver=1.16.0 pkgrel=1 pkgdesc="Python package to manipulate healpix maps" arch=('i686' 'x86_64') url="http://healpy.readthedocs.io" license=('GPL') depends=('python>=3.7' 'python-numpy>=1.13' 'python-scipy' 'python-matplotlib' 'python-astropy' 'cfitsio' 'healpix>=3.80') makedepends=('python-setuptools' 'cython' 'python-wheel' 'python-build' 'python-installer') optdepends=('python-healpy-doc: Documentation for healpy') checkdepends=('python-pytest-cython' 'python-pytest-doctestplus' 'python-requests') source=("https://files.pythonhosted.org/packages/source/h/healpy/healpy-${pkgver}.tar.gz") md5sums=('2a386129ccad6469d5a3398d0b920923') get_pyver() { python -c 'import sys; print(".".join(map(str, sys.version_info[:2])))' } prepare() { cd ${srcdir}/${_pyname}-${pkgver} sed -i -e "/oldest-supported-numpy/d" -e "/\"wheel\"/s/,/\]/" pyproject.toml } build() { cd ${srcdir}/${_pyname}-${pkgver} python -m build --wheel --no-isolation } check() { cd ${srcdir}/${_pyname}-${pkgver} # skip tests that cost lots of time pytest "build/lib.linux-${CARCH}-$(get_pyver)" \ --deselect=build/lib.linux-x86_64-3.10/healpy/test/test_pixelweights.py::test_pixelweights_local_datapath || warning "Tests failed" } package() { cd ${srcdir}/healpy-${pkgver} install -D -m644 README.rst -t "${pkgdir}/usr/share/doc/${pkgname}" python -m installer --destdir="${pkgdir}" dist/*.whl }