blob: a4302f6c69169feab09d9c329179cdd03a5443cc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Contributor: Patrick Mischke
pkgname='python-ibmcloudant'
_name='ibmcloudant'
pkgver=0.10.1
pkgrel=1
pkgdesc="Python Library for Cloudant and CouchDB Access. Successor of python-cloudant"
url="https://github.com/IBM/cloudant-python-sdk"
depends=('python-ibm-cloud-sdk-core' 'python-requests' 'python-dateutil' 'python-pyjwt' 'python' 'python-build')
makedepends=('python-setuptools' 'python-flit' 'python-installer')
license=('Apache-2.0')
arch=('any')
source=("https://github.com/IBM/cloudant-python-sdk/archive/refs/tags/v$pkgver.tar.gz")
sha256sums=('3ba4fae93e137b4911e7d14add04f17d39df68fbdc9a9c0674234534bdec42b5')
build() {
cd "cloudant-python-sdk-$pkgver"
python -m build --wheel --no-isolation
}
package() {
cd "cloudant-python-sdk-$pkgver"
python -m installer --destdir="$pkgdir" dist/*.whl
}
|