blob: 35dcb1ae430c55dbe73d09e38f4ce247b23ceb5b (
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
|
# Maintainer: Paul Irofti <paul@irofti.net>
_pkgname=grpcio-testing
_filename=grpcio_testing
pkgname='python-grpcio-testing'
pkgver=1.74.0
pkgrel=1
pkgdesc="Testing utilities for gRPC Python"
arch=('any')
url="https://grpc.io/"
license=('Apache' )
depends=('python' 'python-grpcio' 'python-protobuf')
makedepends=('python-setuptools')
source=("https://files.pythonhosted.org/packages/source/g/${_pkgname}/${_filename}-${pkgver}.tar.gz")
sha256sums=('11dedb53a410fe3b2a2bc9a9ed9c9a6979420c93243da7d787f7ccf9a2543e37')
build() {
cd "$srcdir/$_filename-$pkgver"
python setup.py build
}
package() {
cd "$srcdir/$_filename-$pkgver"
python setup.py install --root="$pkgdir" --optimize=1 --skip-build
}
# vim:set sw=2 et:
|