blob: 48770be008cb307b1517218629cc95ec05e42857 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
|
# Maintainer: Astro Benzene <universebenzene at sina dot com>
pkgbase=python-sncosmo
_pyname=${pkgbase#python-}
pkgname=("python-${_pyname}")
pkgver=2.12.0
pkgrel=1
pkgdesc="Python library for supernova cosmology"
arch=('i686' 'x86_64')
url="https://sncosmo.readthedocs.io"
license=('BSD-3-Clause')
makedepends=('cython'
'python-setuptools'
'python-wheel'
'python-build'
'python-installer'
'python-numpy')
checkdepends=('python-pytest'
# 'python-pytest-xdist'
'python-astropy'
'python-scipy'
'python-extinction'
'python-h5py'
'python-iminuit'
'python-emcee'
'python-nestle'
'python-looseversion'
'python-matplotlib')
# 'python-yaml'
source=("https://files.pythonhosted.org/packages/source/${_pyname:0:1}/${_pyname}/${_pyname}-${pkgver}.tar.gz")
md5sums=('b89ac0ab5979ca4fdddc466e928b7c9d')
get_pyver() {
python -c "import sys; print('$1'.join(map(str, sys.version_info[:2])))"
}
prepare() {
cd ${srcdir}/${_pyname}-${pkgver}
sed -i "/oldest-supported-numpy/d" pyproject.toml
}
build() {
cd ${srcdir}/${_pyname}-${pkgver}
python -m build --wheel --no-isolation
}
check() {
cd ${srcdir}/${_pyname}-${pkgver}
pytest -m "not might_download" "build/lib.linux-${CARCH}-cpython-$(get_pyver)" || warning "Tests failed" # -vv -l -ra --color=yes -o console_output_style=count
}
package() {
depends=('python-scipy>=1.10.0'
'python-astropy>=5.0'
'python-extinction>=0.4.6'
'python-h5py>=3.11'
'python-yaml>=6.0.1'
'python-looseversion>=1.0.0')
optdepends=('python-matplotlib: For plotting functions'
'python-iminuit: For light curve fitting using the Minuit minimizer in sncosmo.fit_lc'
'python-emcee: For MCMC light curve parameter estimation in sncosmo.mcmc_lc'
'python-nestle: For nested sampling light curve parameter estimation in sncosmo.nest_lc'
'python-corner: For plotting results from the samplers sncosmo.mcmc_lc and sncosmo.nest_lc'
'python-sncosmo-doc: Documentation for SNCosmo')
cd ${srcdir}/${_pyname}-${pkgver}
install -D -m644 LICENSE.rst -t "${pkgdir}/usr/share/licenses/${pkgname}"
install -D -m644 README.md -t "${pkgdir}/usr/share/doc/${pkgname}"
python -m installer --destdir="${pkgdir}" dist/*.whl
}
|