diff options
author | Rohit Goswami <rog32@hi.is> | 2022-12-24 18:42:05 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-24 11:42:05 -0700 |
commit | ed0c1cea915bcebbda2cb90484d331835169234e (patch) | |
tree | e7d3cd64700ad7173f998d57afc3cbb391f69ee7 /var | |
parent | ffc42e287dc71cb0e80c6a17a7c32745ea855bee (diff) | |
download | spack-ed0c1cea915bcebbda2cb90484d331835169234e.tar.gz spack-ed0c1cea915bcebbda2cb90484d331835169234e.tar.bz2 spack-ed0c1cea915bcebbda2cb90484d331835169234e.tar.xz spack-ed0c1cea915bcebbda2cb90484d331835169234e.zip |
py-pytest-datadir: Init at 1.4.1 (#34692)
* py-pytest-datadir: Init at 1.4.1
* py-pytest-data-dir: Fix missing dep
Co-authored-by: "Adam J. Stewart" <ajstewart426@gmail.com>
Co-authored-by: "Adam J. Stewart" <ajstewart426@gmail.com>
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/py-pytest-datadir/package.py | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-pytest-datadir/package.py b/var/spack/repos/builtin/packages/py-pytest-datadir/package.py new file mode 100644 index 0000000000..d36670f27c --- /dev/null +++ b/var/spack/repos/builtin/packages/py-pytest-datadir/package.py @@ -0,0 +1,21 @@ +# Copyright 2013-2022 Lawrence Livermore National Security, LLC and other +# Spack Project Developers. See the top-level COPYRIGHT file for details. +# +# SPDX-License-Identifier: (Apache-2.0 OR MIT) + +from spack.package import * + + +class PyPytestDatadir(PythonPackage): + """Pytest plugin for manipulating test data directories and files.""" + + homepage = "https://github.com/gabrielcnr/pytest-datadir" + pypi = "pytest-datadir/pytest-datadir-1.4.1.tar.gz" + maintainers = ["HaoZeke"] + + version("1.4.1", sha256="9f7a3c4def6ac4cac3cc8181139ab53bd2667231052bd40cb07081748d4420f0") + + depends_on("python@3.6:", type=("build", "run")) + depends_on("py-setuptools", type="build") + depends_on("py-setuptools-scm", type="build") + depends_on("py-pytest@5.0:", type=("build", "run")) |