blob: a4db9add21f90e005ba9931d7cd276b404eb6a3d (
plain)
1 # Description: Python implementation of SAML Version 2
2 # URL: https://pypi.python.org/pypi/pysaml2
3 # Maintainer: Tim Biermann, tbier at posteo dot de
4 # Depends on: python3-dateutil python3-defusedxml python3-future python3-importlib_resources python3-pycryptodomex python3-pytz python3-requests python3-xmlschema python3-zope-interface xmlsec
5
6 name=python3-pysaml2
7 version=7.1.2
8 release=1
9 source=(https://pypi.org/packages/source/p/pysaml2/pysaml2-$version.tar.gz)
10
11 build() {
12 cd pysaml2-$version
13 /usr/bin/python3 setup.py build
14 /usr/bin/python3 setup.py install --prefix=/usr \
15 --root=$PKG \
16 -O1 \
17 --skip-build
18 }
|