diff options
author | Ryan Marcellino <67644978+myan-rarcellino-nnl@users.noreply.github.com> | 2022-08-30 13:27:02 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-30 10:27:02 -0700 |
commit | b35a0b1b409a4b90ede26c88bfb2240cf77a347f (patch) | |
tree | 3514397a09387b0e237f4702958871823066f699 | |
parent | 543a797d1acfc3fe89f9d8ddf76ca87eb92c9b65 (diff) | |
download | spack-b35a0b1b409a4b90ede26c88bfb2240cf77a347f.tar.gz spack-b35a0b1b409a4b90ede26c88bfb2240cf77a347f.tar.bz2 spack-b35a0b1b409a4b90ede26c88bfb2240cf77a347f.tar.xz spack-b35a0b1b409a4b90ede26c88bfb2240cf77a347f.zip |
New package: py-mkdocstrings-python (#32421)
-rw-r--r-- | var/spack/repos/builtin/packages/py-mkdocstrings-python/package.py | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-mkdocstrings-python/package.py b/var/spack/repos/builtin/packages/py-mkdocstrings-python/package.py new file mode 100644 index 0000000000..ea53eb995b --- /dev/null +++ b/var/spack/repos/builtin/packages/py-mkdocstrings-python/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 PyMkdocstringsPython(PythonPackage): + """A Python handler for mkdocstrings.""" + + homepage = "https://mkdocstrings.github.io/python/" + pypi = "mkdocstrings-python/mkdocstrings-python-0.7.1.tar.gz" + + version("0.7.1", sha256="c334b382dca202dfa37071c182418a6df5818356a95d54362a2b24822ca3af71") + + depends_on("python@3.7:", type=("build", "run")) + depends_on("py-pdm-pep517", type="build") + depends_on("py-mkdocstrings@0.19:", type=("build", "run")) + depends_on("py-griffe@0.11.1:", type=("build", "run")) |