blob: 5aefae8775530f2823e4d431980bfa2d35597739 (
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
|
# Maintainer: Butui Hu <hot123tea123@gmail.com>
_pkgname=girder-client
_name=girder_client
pkgname=python-girder-client
pkgver=3.2.5
pkgrel=1
pkgdesc='Python client for interacting with Girder servers'
arch=('any')
url='https://pypi.org/project/girder-client'
license=('Apache-2.0')
depends=(
python-click
python-diskcache
python-requests
python-requests-toolbelt
)
makedepends=(
python-build
python-installer
python-setuptools
python-setuptools-scm
python-wheel
)
source=("${_pkgname}-${pkgver}.tar.gz::https://files.pythonhosted.org/packages/source/${_pkgname::1}/${_pkgname}/${_name}-${pkgver}.tar.gz")
sha512sums=('713d452d00eac9dec108d87b2bcff2009c9c3305382fb8643f026a7d4509483b938b108ea74370e2c1af78090b1f6aef86407b6946990d7fd12983adc0a554a9')
build() {
cd "${_name}-${pkgver}"
python -m build --wheel --no-isolation
}
package() {
cd "${_name}-${pkgver}"
python -m installer --destdir="${pkgdir}" dist/*.whl
}
# vim:set ts=2 sw=2 et:
|