diff options
Diffstat (limited to 'var/spack/repos/builtin/packages/py-tatsu/package.py')
-rw-r--r-- | var/spack/repos/builtin/packages/py-tatsu/package.py | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/var/spack/repos/builtin/packages/py-tatsu/package.py b/var/spack/repos/builtin/packages/py-tatsu/package.py index 0486ff950c..f53fd55d5b 100644 --- a/var/spack/repos/builtin/packages/py-tatsu/package.py +++ b/var/spack/repos/builtin/packages/py-tatsu/package.py @@ -14,13 +14,13 @@ class PyTatsu(PythonPackage): homepage = "https://github.com/neogeny/tatsu" pypi = "TatSu/TatSu-4.4.0.zip" - version('4.4.0', sha256='80713413473a009f2081148d0f494884cabaf9d6866b71f2a68a92b6442f343d') + version("4.4.0", sha256="80713413473a009f2081148d0f494884cabaf9d6866b71f2a68a92b6442f343d") - variant('future_regex', default=True, description='Use regex implementation') + variant("future_regex", default=True, description="Use regex implementation") - depends_on('python@3.6:', type=('build', 'run'), when='@4.5:') - depends_on('py-setuptools', type='build') + depends_on("python@3.6:", type=("build", "run"), when="@4.5:") + depends_on("py-setuptools", type="build") # part of the standard lib in python@3.7.0, required in the current HEAD - depends_on('py-dataclasses@0.6:', type=('build', 'run'), when='@4.5:^python@:3.6') + depends_on("py-dataclasses@0.6:", type=("build", "run"), when="@4.5:^python@:3.6") # optional dependency, otherwise falls back to standard implementation - depends_on('py-regex@2018.8:', type=('build', 'run'), when='+future_regex') + depends_on("py-regex@2018.8:", type=("build", "run"), when="+future_regex") |