blob: 95b5535b41a5b8fe73beb39898de02473d3cf96f (
plain)
1 # Description: Python HTTP for Humans.
2 # URL: http://python-requests.org/
3 # Maintainer: Danny Rawlins, crux at romster dot me
4 # Depends on: python3-chardet python3-idna python3-urllib3
5
6 name=python3-requests
7 version=2.18.4
8 release=2
9 source=(https://files.pythonhosted.org/packages/source/${name:8:1}/${name#*-}/${name#*-}-$version.tar.gz
10 certs.patch)
11
12 build() {
13 cd ${name#*-}-$version
14
15 sed -e '/certifi/d' -i setup.py
16 patch -p1 -i $SRC/certs.patch
17
18 /usr/bin/python3 setup.py build
19 /usr/bin/python3 setup.py install --prefix=/usr --root=$PKG
20 }
|