From 136c139205cc564b00441f00a2734d2533f54469 Mon Sep 17 00:00:00 2001 From: Michal Vasilek Date: Sat, 21 Jan 2023 08:33:17 +0100 Subject: [PATCH] python3-bcrypt: update to 3.2.2. --- srcpkgs/python3-bcrypt/template | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/srcpkgs/python3-bcrypt/template b/srcpkgs/python3-bcrypt/template index fcf0c49b836..2108369cf23 100644 --- a/srcpkgs/python3-bcrypt/template +++ b/srcpkgs/python3-bcrypt/template @@ -1,15 +1,20 @@ # Template file for 'python3-bcrypt' pkgname=python3-bcrypt -version=3.2.0 -revision=4 -build_style=python3-module -hostmakedepends="python3-setuptools python3-cffi" +version=3.2.2 +revision=1 +build_style=python3-pep517 +hostmakedepends="python3-setuptools python3-wheel" makedepends="python3-devel" -depends="python3-cffi python3-six" +depends="python3-cffi" checkdepends="python3-pytest $depends" short_desc="Modern password hashing for software and servers" maintainer="Orphaned " license="Apache-2.0" homepage="https://github.com/pyca/bcrypt" +changelog="https://github.com/pyca/bcrypt/blob/main/README.rst#changelog" distfiles="${PYPI_SITE}/b/bcrypt/bcrypt-${version}.tar.gz" -checksum=5b93c1726e50a93a033c36e5ca7fdcd29a5c7395af50a6892f5d9e7c6cfbfb29 +checksum=433c410c2177057705da2a9f2cd01dd157493b2a7ac14c8593a16b3dab6b6bfb + +do_check() { + PYTHONPATH="$(cd build/lib* && pwd)" pytest +}