summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-psyclone/package.py
diff options
context:
space:
mode:
Diffstat (limited to 'var/spack/repos/builtin/packages/py-psyclone/package.py')
-rw-r--r--var/spack/repos/builtin/packages/py-psyclone/package.py34
1 files changed, 17 insertions, 17 deletions
diff --git a/var/spack/repos/builtin/packages/py-psyclone/package.py b/var/spack/repos/builtin/packages/py-psyclone/package.py
index a21b00566e..82530cd14e 100644
--- a/var/spack/repos/builtin/packages/py-psyclone/package.py
+++ b/var/spack/repos/builtin/packages/py-psyclone/package.py
@@ -8,35 +8,35 @@ from spack.package import *
class PyPsyclone(PythonPackage):
"""Code generation for the PSyKAl framework from the GungHo project,
- as used by the LFRic model at the UK Met Office."""
+ as used by the LFRic model at the UK Met Office."""
homepage = "https://github.com/stfc/PSyclone"
- url = "https://github.com/stfc/PSyclone/archive/1.5.1.tar.gz"
- git = "https://github.com/stfc/PSyclone.git"
+ url = "https://github.com/stfc/PSyclone/archive/1.5.1.tar.gz"
+ git = "https://github.com/stfc/PSyclone.git"
- version('develop', branch='master')
- version('1.5.1', commit='eba7a097175b02f75dec70616cf267b7b3170d78')
+ version("develop", branch="master")
+ version("1.5.1", commit="eba7a097175b02f75dec70616cf267b7b3170d78")
- depends_on('py-setuptools', type='build')
- depends_on('py-pyparsing', type=('build', 'run'))
+ depends_on("py-setuptools", type="build")
+ depends_on("py-pyparsing", type=("build", "run"))
# Test cases fail without compatible versions of py-fparser:
- depends_on('py-fparser@0.0.5', type=('build', 'run'), when='@1.5.1')
- depends_on('py-fparser', type=('build', 'run'), when='@1.5.2:')
+ depends_on("py-fparser@0.0.5", type=("build", "run"), when="@1.5.1")
+ depends_on("py-fparser", type=("build", "run"), when="@1.5.2:")
# Dependencies only required for tests:
- depends_on('py-numpy', type='test')
- depends_on('py-nose', type='test')
- depends_on('py-pytest', type='test')
+ depends_on("py-numpy", type="test")
+ depends_on("py-nose", type="test")
+ depends_on("py-pytest", type="test")
- @run_after('install')
+ @run_after("install")
@on_package_attributes(run_tests=True)
def check_build(self):
# Limit py.test to search inside the build tree:
- touch('pytest.ini')
- with working_dir('src'):
- Executable('py.test')()
+ touch("pytest.ini")
+ with working_dir("src"):
+ Executable("py.test")()
def setup_build_environment(self, env):
# Allow testing with installed executables:
- env.prepend_path('PATH', self.prefix.bin)
+ env.prepend_path("PATH", self.prefix.bin)