summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorManuela Kuhn <36827019+manuelakuhn@users.noreply.github.com>2021-07-14 00:01:54 +0200
committerGitHub <noreply@github.com>2021-07-13 22:01:54 +0000
commit04520ebdea4f32881f3f4cf697e1514d25feed27 (patch)
treee8b331684b2b23d1c0f71e9e7d37117e532af50d /var
parent819f288587e53c1e5a8e083d4c853cfcd3e35ec0 (diff)
downloadspack-04520ebdea4f32881f3f4cf697e1514d25feed27.tar.gz
spack-04520ebdea4f32881f3f4cf697e1514d25feed27.tar.bz2
spack-04520ebdea4f32881f3f4cf697e1514d25feed27.tar.xz
spack-04520ebdea4f32881f3f4cf697e1514d25feed27.zip
py-cryptography: add 3.4.7 (#24866)
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/py-cryptography/package.py21
1 files changed, 14 insertions, 7 deletions
diff --git a/var/spack/repos/builtin/packages/py-cryptography/package.py b/var/spack/repos/builtin/packages/py-cryptography/package.py
index ccd240519a..5c80b4aa34 100644
--- a/var/spack/repos/builtin/packages/py-cryptography/package.py
+++ b/var/spack/repos/builtin/packages/py-cryptography/package.py
@@ -14,24 +14,31 @@ class PyCryptography(PythonPackage):
homepage = "https://github.com/pyca/cryptography"
pypi = "cryptography/cryptography-1.8.1.tar.gz"
+ version('3.4.7', sha256='3d10de8116d25649631977cb37da6cbdd2d6fa0e0281d014a5b7d337255ca713')
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')
+ conflicts('+idna', when='@:2.4,3.1:')
# 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@3.6:', when='@3.4:', type=('build', 'run'))
depends_on('python@2.7:2.8,3.4:', when='@2.3.1:', type=('build', 'run'))
+ depends_on('python@2.6:2.8,3.4:', type=('build', 'run'))
- depends_on('py-setuptools@20.5:', type='build')
+ depends_on('py-setuptools@40.6:', when='@2.7:', type='build')
+ depends_on('py-setuptools@18.5:', when='@2.2:2.6', type='build')
+ depends_on('py-setuptools@11.3:', when='@:2.1', type='build')
+ depends_on('py-setuptools-rust@0.11.4:', when='@3.4:', 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-cffi@1.12:', when='@3.3:', type=('build', 'run'))
+ depends_on('py-cffi@1.8:1.11.2,1.11.4:', when='@2.5:3.2', type=('build', 'run'))
+ depends_on('py-cffi@1.7:1.11.2,1.11.4:', when='@1.9:2.4.2', type=('build', 'run'))
+ depends_on('py-cffi@1.4.1:', type=('build', 'run'))
- depends_on('py-asn1crypto@0.21.0:', type=('build', 'run'))
- depends_on('py-six@1.4.1:', type=('build', 'run'))
+ depends_on('py-asn1crypto@0.21.0:', type=('build', 'run'), when='@:2.7')
+ depends_on('py-six@1.4.1:', type=('build', 'run'), when='@:3.3')
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')