21 lines
642 B
Python
21 lines
642 B
Python
# Copyright 2013-2020 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 PyRsa(PythonPackage):
|
|
"""Pure-Python RSA implementation"""
|
|
|
|
homepage = "https://stuvel.eu/rsa"
|
|
url = "https://pypi.io/packages/source/r/rsa/rsa-3.4.2.tar.gz"
|
|
|
|
import_modules = ['rsa']
|
|
|
|
version('3.4.2', sha256='25df4e10c263fb88b5ace923dd84bf9aa7f5019687b5e55382ffcdb8bede9db5')
|
|
|
|
depends_on('py-setuptools', type=('build', 'run'))
|
|
depends_on('py-pyasn1@0.1.3:', type=('build', 'run'))
|