summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--var/spack/repos/builtin/packages/py-fasteners/package.py11
1 files changed, 7 insertions, 4 deletions
diff --git a/var/spack/repos/builtin/packages/py-fasteners/package.py b/var/spack/repos/builtin/packages/py-fasteners/package.py
index 899b7ab82f..9b18417578 100644
--- a/var/spack/repos/builtin/packages/py-fasteners/package.py
+++ b/var/spack/repos/builtin/packages/py-fasteners/package.py
@@ -12,10 +12,13 @@ class PyFasteners(PythonPackage):
homepage = "https://github.com/harlowja/fasteners"
pypi = "fasteners/fasteners-0.14.1.tar.gz"
+ version('0.17.3', sha256='a9a42a208573d4074c77d041447336cf4e3c1389a256fd3e113ef59cf29b7980')
version('0.16.3', sha256='b1ab4e5adfbc28681ce44b3024421c4f567e705cc3963c732bf1cba3348307de')
version('0.14.1', sha256='427c76773fe036ddfa41e57d89086ea03111bbac57c55fc55f3006d027107e18')
- depends_on('py-setuptools', type='build')
- depends_on('py-monotonic@0.1:', type=('build', 'run'), when='@0.14.1')
- depends_on('py-monotonic@0.1:', type=('build', 'run'), when='@0.16.3: ^python@:3.3')
- depends_on('py-six', type=('build', 'run'))
+ depends_on('python@3.6:', when='@0.17:', type=('build', 'run'))
+ depends_on('py-setuptools', type='build')
+
+ depends_on('py-monotonic@0.1:', when='@0.16 ^python@:3.3', type=('build', 'run'))
+ depends_on('py-monotonic@0.1:', when='@:0.15', type=('build', 'run'))
+ depends_on('py-six', when='@:0.16', type=('build', 'run'))