17 lines
559 B
Plaintext
17 lines
559 B
Plaintext
# Description: HTTP Request and Response Service
|
|
# URL: https://github.com/psf/httpbin
|
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
|
# Depends on: python3-brotlicffi python3-decorator python3-flasgger python3-gevent python3-raven
|
|
|
|
name=httpbin
|
|
version=0.10.1
|
|
release=1
|
|
source=(https://github.com/psf/httpbin/archive/release-v$version/$name-$version.tar.gz)
|
|
|
|
build() {
|
|
cd $name-release-v$version
|
|
|
|
/usr/bin/python3 -m build --wheel --skip-dependency-check --no-isolation
|
|
/usr/bin/python3 -m installer --compile-bytecode 2 --destdir=$PKG dist/*.whl
|
|
}
|