diff options
author | Manuela Kuhn <36827019+manuelakuhn@users.noreply.github.com> | 2021-07-05 19:24:32 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-05 12:24:32 -0500 |
commit | 6a1a4d4bb6ee1fab6c6b16a5e02910bae45f6b11 (patch) | |
tree | e8454e3414c829cb72005932e01fcee39012337d | |
parent | 713fd67b4aa0d3a614ca149f86deeb2d5e913d12 (diff) | |
download | spack-6a1a4d4bb6ee1fab6c6b16a5e02910bae45f6b11.tar.gz spack-6a1a4d4bb6ee1fab6c6b16a5e02910bae45f6b11.tar.bz2 spack-6a1a4d4bb6ee1fab6c6b16a5e02910bae45f6b11.tar.xz spack-6a1a4d4bb6ee1fab6c6b16a5e02910bae45f6b11.zip |
py-secretstorage: add 3.3.1 (#24705)
-rw-r--r-- | var/spack/repos/builtin/packages/py-secretstorage/package.py | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/var/spack/repos/builtin/packages/py-secretstorage/package.py b/var/spack/repos/builtin/packages/py-secretstorage/package.py index 5d1458a155..8676609e36 100644 --- a/var/spack/repos/builtin/packages/py-secretstorage/package.py +++ b/var/spack/repos/builtin/packages/py-secretstorage/package.py @@ -3,6 +3,8 @@ # # SPDX-License-Identifier: (Apache-2.0 OR MIT) +from spack import * + class PySecretstorage(PythonPackage): """Python bindings to FreeDesktop.org Secret Service API.""" @@ -10,9 +12,13 @@ class PySecretstorage(PythonPackage): homepage = "https://github.com/mitya57/secretstorage" pypi = "SecretStorage/SecretStorage-3.1.2.tar.gz" + version('3.3.1', sha256='fd666c51a6bf200643495a04abb261f83229dcb6fd8472ec393df7ffc8b6f195') version('3.1.2', sha256='15da8a989b65498e29be338b3b279965f1b8f09b9668bd8010da183024c8bff6') - depends_on('python@3.5:', type=('build', 'run')) - depends_on('py-setuptools', type='build') - depends_on('py-cryptography', type=('build', 'run')) - depends_on('py-jeepney@0.4.2:', type=('build', 'run')) + depends_on('python@3.6:', when='@3.3:', type=('build', 'run')) + depends_on('python@3.5:', when='@:3.2', type=('build', 'run')) + depends_on('py-setuptools@30.3:', type='build') + depends_on('py-cryptography@2.0:', when='@3.2:', type=('build', 'run')) + depends_on('py-cryptography', when='@:3.1', type=('build', 'run')) + depends_on('py-jeepney@0.6:', when='@3.3:', type=('build', 'run')) + depends_on('py-jeepney@0.4.2:', when='@:3.2', type=('build', 'run')) |