# Description: Modern password hashing for your software and your servers
# URL: https://pypi.org/project/bcrypt/
# Maintainer: Matt Housh, jaeger at crux dot ninja
# Depends on: python3-six python3-cffi python3-setuptools-rust

name=python3-bcrypt
version=5.0.0
release=1
source=(https://pypi.python.org/packages/source/b/bcrypt/bcrypt-$version.tar.gz)

build() {
    cd bcrypt-$version
    /usr/bin/python3 -m build --wheel --skip-dependency-check --no-isolation
    /usr/bin/python3 -m installer --destdir=$PKG dist/*.whl
}

# vim: set ts=4 et:
