Add extra version of py-cryptography (#14975)

* Add extra version of py-cryptography

* Update package.py

* Update package.py

* Update var/spack/repos/builtin/packages/py-cryptography/package.py

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

* Update var/spack/repos/builtin/packages/py-cryptography/package.py

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

* Update var/spack/repos/builtin/packages/py-cryptography/package.py

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

* Update package.py

* Flake-8

Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com>
This commit is contained in:
iarspider 2020-02-18 21:26:02 +01:00 committed by GitHub
parent 813bfcfcbd
commit 53238af2dc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -11,18 +11,29 @@ class PyCryptography(PythonPackage):
"""cryptography is a package which provides cryptographic recipes
and primitives to Python developers"""
homepage = "https://pypi.python.org/pypi/cryptography"
homepage = "https://github.com/pyca/cryptography"
url = "https://pypi.io/packages/source/c/cryptography/cryptography-1.8.1.tar.gz"
version('2.7', sha256='e6347742ac8f35ded4a46ff835c60e68c22a536a8ae5c4422966d06946b6d4c6')
version('2.3.1', sha256='8d10113ca826a4c29d5b85b2c4e045ffa8bad74fb525ee0eceb1d38d4c70dfd6')
version('1.8.1', sha256='323524312bb467565ebca7e50c8ae5e9674e544951d28a2904a50012a8828190')
variant('idna', default=False, description='Deprecated U-label support')
conflicts('+idna', when='@:2.4')
# dependencies taken from https://github.com/pyca/cryptography/blob/master/setup.py
depends_on('python@2.6:2.8,3.4:', type=('build', 'run'))
depends_on('python@2.7:2.8,3.4:', when='@2.3.1:', type=('build', 'run'))
depends_on('py-setuptools@20.5:', type='build')
depends_on('py-cffi@1.4.1:', type=('build', 'run'))
depends_on('py-cffi@1.4.1:', type=('build', 'run'))
depends_on('py-cffi@1.8:1.11.2,1.11.4:', type=('build', 'run'), when='@2.7:')
depends_on('py-asn1crypto@0.21.0:', type=('build', 'run'))
depends_on('py-six@1.4.1:', type=('build', 'run'))
depends_on('py-idna@2.1:', type=('build', 'run'))
depends_on('py-idna@2.1:', type=('build', 'run'), when='@:2.4') # deprecated
depends_on('py-idna@2.1:', type=('build', 'run'), when='@2.5: +idna') # deprecated
depends_on('py-enum34', type=('build', 'run'), when='^python@:3.4')
depends_on('py-ipaddress', type=('build', 'run'), when='^python@:3.3')
depends_on('openssl@:1.0', when='@:1.8.1')