forked from ports/contrib
16 lines
495 B
Plaintext
16 lines
495 B
Plaintext
# Description: Python binding to the Networking and Cryptography (NaCl) library
|
|
# URL: https://pypi.org/project/PyNaCl/
|
|
# Maintainer: Matt Housh, jaeger at crux dot ninja
|
|
# Depends on: python3-setuptools python3-pip
|
|
|
|
name=python3-pynacl
|
|
version=1.5.0
|
|
release=1
|
|
source=(https://files.pythonhosted.org/packages/a7/22/27582568be639dfe22ddb3902225f91f2f17ceff88ce80e4db396c8986da/PyNaCl-$version.tar.gz)
|
|
|
|
build() {
|
|
cd PyNaCl-$version
|
|
python3 setup.py build
|
|
python3 setup.py install --root=$PKG
|
|
}
|