blob: ee5bf14c3f02343bf93bd091e99d1f2215ee902a (
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
|
# Maintainer: Iyán Méndez Veiga <me (at) iyanmv (dot) com>
_pkgname=qiskit-ibm-runtime
pkgname=python-${_pkgname}
pkgver=0.13.0
pkgrel=1
pkgdesc="IBM Client for Qiskit Runtime"
arch=('any')
url="https://github.com/Qiskit/qiskit-ibm-runtime"
license=('Apache')
depends=(
'python-dateutil'
'python-ibm-platform-services'
'python-numpy'
'python-qiskit-ibm-provider'
'python-qiskit'
'python-requests'
'python-requests-ntlm'
'python-typing_extensions'
'python-urllib3'
'python-websocket-client'
)
makedepends=(
'python-build'
'python-installer'
'python-setuptools'
'python-wheel'
)
source=("${_pkgname}-${pkgver}.tar.gz::https://github.com/Qiskit/${_pkgname}/archive/${pkgver}.tar.gz")
b2sums=('ba474a33699461710bfff65ea143d7ddf5283b247331b4d50f74b60f5a01c67a846cb3826e83ad08f5fce9ce2b24264b2ba4bd9c7aac6cd9aa0a797fb556b069')
build() {
cd "${srcdir}/${_pkgname}-${pkgver}"
python -m build --wheel --no-isolation
}
package() {
cd "${srcdir}/${_pkgname}-${pkgver}"
python -m installer --destdir="$pkgdir" dist/*.whl
}
|