py-argon2-cffi: add 21.3.0 (#28968)

This commit is contained in:
Manuela Kuhn 2022-02-16 06:14:24 +01:00 committed by GitHub
parent 0f9f636f38
commit dfd83e60ac
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -10,12 +10,20 @@ class PyArgon2Cffi(PythonPackage):
homepage = "https://argon2-cffi.readthedocs.io/" homepage = "https://argon2-cffi.readthedocs.io/"
pypi = "argon2-cffi/argon2-cffi-20.1.0.tar.gz" pypi = "argon2-cffi/argon2-cffi-20.1.0.tar.gz"
version('21.3.0', sha256='d384164d944190a7dd7ef22c6aa3ff197da12962bd04b17f64d4e93d934dba5b')
version('21.1.0', sha256='f710b61103d1a1f692ca3ecbd1373e28aa5e545ac625ba067ff2feca1b2bb870') version('21.1.0', sha256='f710b61103d1a1f692ca3ecbd1373e28aa5e545ac625ba067ff2feca1b2bb870')
version('20.1.0', sha256='d8029b2d3e4b4cea770e9e5a0104dd8fa185c1724a0f01528ae4826a6d25f97d') version('20.1.0', sha256='d8029b2d3e4b4cea770e9e5a0104dd8fa185c1724a0f01528ae4826a6d25f97d')
depends_on('python@3.6:', when='@21.2:', type=('build', 'run'))
depends_on('python@3.5:', when='@21.1:', type=('build', 'run'))
depends_on('python@2.7:2,3.5:', type=('build', 'run')) depends_on('python@2.7:2,3.5:', type=('build', 'run'))
depends_on('python@3.5:', type=('build', 'run'), when='@21.1.0:')
depends_on('py-setuptools', type='build') depends_on('py-flit-core@3.4:3', when='@21.2:', type='build')
depends_on('py-cffi@1.0.0:', type=('build', 'run')) depends_on('py-setuptools', when='@:21.1', type='build')
depends_on('py-six', type=('build', 'run'), when='@:20.1.0')
depends_on('py-argon2-cffi-bindings', when='@21.2:', type=('build', 'run'))
depends_on('py-dataclasses', when='@21.2: ^python@:3.6', type=('build', 'run'))
depends_on('py-typing-extensions', when='@21.2: ^python@:3.7', type=('build', 'run'))
depends_on('py-cffi@1.0.0:', when='@:21.1', type=('build', 'run'))
depends_on('py-six', when='@:20.1', type=('build', 'run'))
depends_on('py-enum34', when='^python@:3.3', type=('build', 'run')) depends_on('py-enum34', when='^python@:3.3', type=('build', 'run'))