blob: ce210198f64fcf9f6e3c93e0e693ef9298ada8f3 (
plain)
1 # Description: A pure-Python, bring-your-own-I/O implementation of HTTP/1.1
2 # URL: https://github.com/njsmith/h11
3 # Maintainer: Tim Biermann, tbier at posteo dot de
4 # Depends on: python3-setuptools
5
6 name=python3-h11
7 version=0.14.0
8 release=1
9 source=(https://pypi.io/packages/source/h/h11/h11-$version.tar.gz)
10
11 build() {
12 cd h11-$version
13 /usr/bin/python3 setup.py build
14 /usr/bin/python3 setup.py install --prefix=/usr \
15 --root=$PKG \
16 --skip-build \
17 -O1
18 }
|