blob: 4cdf94718d166ca6c45a1283f4322666c8df1a9f (
plain)
1 # Description: A toolbelt of useful classes and functions to be used with python-requests
2 # URL: https://github.com/requests/toolbelt
3 # Maintainer: Tim Biermann, tbier at posteo dot de
4 # Depends on: python3-requests
5
6 name=python3-requests-toolbelt
7 version=0.9.1
8 release=1
9 source=(https://github.com/requests/toolbelt/archive/$version/toolbelt-$version.tar.gz)
10
11 build() {
12 cd toolbelt-$version
13 /usr/bin/python3 setup.py build
14 /usr/bin/python3 setup.py install \
15 --root=$PKG \
16 --optimize=1 \
17 --skip-build
18 }
|