### this file is sourced not run
PKGVER=43.0.1
PKGBUILD=1
PKGARCH=x86_64

# source: james
TARBALL=python-cryptography-$PKGVER.tar.gz
MD5SUM=098045b2e33051979efab7a0a9880e0f
SRC_URL=https://files.pythonhosted.org/packages/source/c/cryptography/cryptography-$PKGVER.tar.gz
BUNDLE=

SLACKREQ='python3-cffi glib-networking'
SLACKDESC="python3-cryptography: python3-cryptography $PKGVER (cryptography library)
python3-cryptography: 
python3-cryptography: cryptography is a package which provides cryptographic recipes and 
python3-cryptography: primitives to Python developers. Our goal is for it to be your 
python3-cryptography: “cryptographic standard library”. It includes both high level 
python3-cryptography: recipes and low level interfaces to common cryptographic algorithms 
python3-cryptography: such as symmetric ciphers, message digests, and key derivation 
python3-cryptography: functions.
python3-cryptography: 
python3-cryptography: https://pypi.org/project/cryptography/
python3-cryptography: 
"

### default pkg_download
### defaulg pkg_prepare

### package
pkg_packageb() {
	rm -r ./root # rust cruft
}

### build
pkg_build() {
	echo nameserver 8.8.8.8 > /etc/resolv.conf
	# load rust compiler
	. /etc/profile.d/rustc.sh &&

	pkg_build_pip3modules cryptography &&
	pkg_build_slackdesc &&

	rm -f /etc/resolv.conf
}


