16 lines
449 B
Plaintext
16 lines
449 B
Plaintext
# 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=4.1.2
|
|
release=1
|
|
source=(https://pypi.python.org/packages/source/b/bcrypt/bcrypt-$version.tar.gz)
|
|
|
|
build() {
|
|
cd bcrypt-$version
|
|
python3 setup.py build
|
|
python3 setup.py install --root=$PKG
|
|
}
|