mirror of
https://github.com/void-linux/void-packages.git
synced 2025-08-03 19:32:57 +02:00
python-cryptography: update to 3.3.1.
This commit is contained in:
parent
db47e40a5c
commit
3be7d70709
1 changed files with 15 additions and 7 deletions
|
@ -1,6 +1,6 @@
|
||||||
# Template file for 'python-cryptography'
|
# Template file for 'python-cryptography'
|
||||||
pkgname=python-cryptography
|
pkgname=python-cryptography
|
||||||
version=3.2.1
|
version=3.3.1
|
||||||
revision=1
|
revision=1
|
||||||
wrksrc="cryptography-${version}"
|
wrksrc="cryptography-${version}"
|
||||||
build_style=python-module
|
build_style=python-module
|
||||||
|
@ -10,18 +10,26 @@ hostmakedepends="python-setuptools python3-setuptools libressl-devel
|
||||||
makedepends="libressl-devel python-devel python3-devel"
|
makedepends="libressl-devel python-devel python3-devel"
|
||||||
depends="python-cffi python-six python-enum34
|
depends="python-cffi python-six python-enum34
|
||||||
python-idna python-ipaddress"
|
python-idna python-ipaddress"
|
||||||
checkdepends="python-cryptography_vectors python-hypothesis
|
checkdepends="python-cryptography_vectors python-hypothesis python-pretend
|
||||||
python-iso-8601 python-pretend python-pytest python-pytz
|
python-pytest python-pytz python3-cryptography_vectors python3-hypothesis
|
||||||
python3-cryptography_vectors python3-hypothesis
|
python3-pretend python3-pytest python3-pytz ${depends}"
|
||||||
python3-iso-8601 python3-pretend python3-pytest python3-pytz
|
|
||||||
${depends}"
|
|
||||||
short_desc="Python2 library that provides cryptographic recipes and primitives"
|
short_desc="Python2 library that provides cryptographic recipes and primitives"
|
||||||
maintainer="Alessio Sergi <al3hex@gmail.com>"
|
maintainer="Alessio Sergi <al3hex@gmail.com>"
|
||||||
license="BSD-3-Clause, Apache-2.0"
|
license="BSD-3-Clause, Apache-2.0"
|
||||||
homepage="https://github.com/pyca/cryptography"
|
homepage="https://github.com/pyca/cryptography"
|
||||||
changelog="https://raw.githubusercontent.com/pyca/cryptography/master/CHANGELOG.rst"
|
changelog="https://raw.githubusercontent.com/pyca/cryptography/master/CHANGELOG.rst"
|
||||||
distfiles="${PYPI_SITE}/c/cryptography/cryptography-${version}.tar.gz"
|
distfiles="${PYPI_SITE}/c/cryptography/cryptography-${version}.tar.gz"
|
||||||
checksum=d3d5e10be0cf2a12214ddee45c6bd203dab435e3d83b4560c03066eda600bfe3
|
checksum=7e177e4bea2de937a584b13645cab32f25e3d96fc0bc4a4cf99c27dc77682be6
|
||||||
|
|
||||||
|
do_check() {
|
||||||
|
# Tests use python*-iso-8601, which fails to parse valid ISO8601 strings
|
||||||
|
local ignores="--ignore=tests/test_fernet.py"
|
||||||
|
|
||||||
|
PYTHONPATH="$(cd build-2.7/lib* && pwd)" \
|
||||||
|
python2.7 -m pytest ${ignores} tests
|
||||||
|
PYTHONPATH="$(cd build-${py3_ver}/lib* && pwd)" \
|
||||||
|
python${py3_ver} -m pytest ${ignores} tests
|
||||||
|
}
|
||||||
|
|
||||||
post_install() {
|
post_install() {
|
||||||
vlicense LICENSE
|
vlicense LICENSE
|
||||||
|
|
Loading…
Add table
Reference in a new issue