summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbryanherman <63422190+bryanherman@users.noreply.github.com>2021-01-28 12:00:03 -0500
committerGitHub <noreply@github.com>2021-01-28 11:00:03 -0600
commitff8ef4880640710e80ac3509fe4d7344d6607143 (patch)
tree3b095fd6866290e984f48e752cb343c82969b917
parentff0a92e6a806de844489e3dbe618f70980713d4d (diff)
downloadspack-ff8ef4880640710e80ac3509fe4d7344d6607143.tar.gz
spack-ff8ef4880640710e80ac3509fe4d7344d6607143.tar.bz2
spack-ff8ef4880640710e80ac3509fe4d7344d6607143.tar.xz
spack-ff8ef4880640710e80ac3509fe4d7344d6607143.zip
New package: py-pytest-doctestplus (#21335)
* added package py-pytest-doctestplus * setuptools required for run
-rw-r--r--var/spack/repos/builtin/packages/py-pytest-doctestplus/package.py21
1 files changed, 21 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-pytest-doctestplus/package.py b/var/spack/repos/builtin/packages/py-pytest-doctestplus/package.py
new file mode 100644
index 0000000000..bab8fabb89
--- /dev/null
+++ b/var/spack/repos/builtin/packages/py-pytest-doctestplus/package.py
@@ -0,0 +1,21 @@
+# Copyright 2013-2021 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 import *
+
+
+class PyPytestDoctestplus(PythonPackage):
+ """Pytest plugin with advanced doctest features."""
+
+ homepage = "https://www.astropy.org/"
+ pypi = "pytest-doctestplus/pytest-doctestplus-0.8.0.tar.gz"
+
+ version('0.9.0', sha256='6fe747418461d7b202824a3486ba8f4fa17a9bd0b1eddc743ba1d6d87f03391a')
+
+ depends_on('python@3.6:', type=('build', 'run'))
+ depends_on('py-setuptools@30.3.0:', type=('build', 'run'))
+ depends_on('py-setuptools-scm', type='build')
+ depends_on('py-pytest@4.6:', type=('build', 'run'))