spack/var/spack/repos/builtin/packages/py-bcrypt/package.py
Greg Becker 67603d71bc Add dependencies for hpcrypt (#8067)
* Add dependencies for hpcrypt

* address review comments

* flake

* license-fix

* fix checksums

* Update py-hvace homepage

Co-Authored-By: Adam J. Stewart <ajstewart426@gmail.com>

* update py-hvac url

Co-Authored-By: Adam J. Stewart <ajstewart426@gmail.com>
2019-12-18 17:09:26 -06:00

20 lines
692 B
Python

# Copyright 2013-2019 Lawrence Livermore National Security, LLC and other
# Spack Project Developers. See the top-level COPYRIGHT file for details.
#
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
from spack import *
class PyBcrypt(PythonPackage):
"""Modern password hashing for your software and your servers"""
homepage = "https://github.com/pyca/bcrypt/"
url = "https://github.com/pyca/bcrypt/archive/3.1.4.tar.gz"
version('3.1.4', sha256='ca122a2cdcdffb0fd04f9dfe3493766f298bef02dea2f190f35ea6fdee222b96')
depends_on('py-setuptools', type='build')
depends_on('py-cffi@1.1:', type=('build', 'run'))
depends_on('py-six@1.4.1:', type=('build', 'run'))