diff options
Diffstat (limited to 'var/spack/repos/builtin/packages/py-pytest-flake8/package.py')
-rw-r--r-- | var/spack/repos/builtin/packages/py-pytest-flake8/package.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/var/spack/repos/builtin/packages/py-pytest-flake8/package.py b/var/spack/repos/builtin/packages/py-pytest-flake8/package.py index 991aa8eb9a..9af5a6f29f 100644 --- a/var/spack/repos/builtin/packages/py-pytest-flake8/package.py +++ b/var/spack/repos/builtin/packages/py-pytest-flake8/package.py @@ -12,10 +12,10 @@ class PyPytestFlake8(PythonPackage): homepage = "https://github.com/tholo/pytest-flake8" pypi = "pytest-flake8/pytest-flake8-0.8.1.tar.gz" - version('0.8.1', sha256='aa10a6db147485d71dad391d4149388904c3072194d51755f64784ff128845fd') + version("0.8.1", sha256="aa10a6db147485d71dad391d4149388904c3072194d51755f64784ff128845fd") - depends_on('py-setuptools', type='build') + depends_on("py-setuptools", type="build") # Install requires: - depends_on('py-flake8@3.0:', type=('build', 'run')) - depends_on('py-pytest@2.8:', type=('build', 'run')) + depends_on("py-flake8@3.0:", type=("build", "run")) + depends_on("py-pytest@2.8:", type=("build", "run")) |