forked from ports/contrib
19 lines
631 B
Plaintext
19 lines
631 B
Plaintext
# Description: Python implementation of SAML Version 2
|
|
# URL: https://pypi.python.org/pypi/pysaml2
|
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
|
# Depends on: python3-dateutil python3-defusedxml python3-future python3-importlib_resources python3-pycryptodomex python3-pytz python3-requests python3-xmlschema python3-zope-interface xmlsec
|
|
|
|
name=python3-pysaml2
|
|
version=7.2.1
|
|
release=1
|
|
source=(https://pypi.org/packages/source/p/pysaml2/pysaml2-$version.tar.gz)
|
|
|
|
build() {
|
|
cd pysaml2-$version
|
|
/usr/bin/python3 setup.py build
|
|
/usr/bin/python3 setup.py install --prefix=/usr \
|
|
--root=$PKG \
|
|
-O1 \
|
|
--skip-build
|
|
}
|