diff options
author | Lydéric Debusschère <lyderic.de@gmail.com> | 2023-12-01 14:53:57 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-01 07:53:57 -0600 |
commit | 3a9aea753d44533ccdb6f74e4e6176a810c61196 (patch) | |
tree | 14b39090e1c428e3d4ddb12a98b13fa57c38628b | |
parent | c61da8381c656ad3187755033913b0b948e57f05 (diff) | |
download | spack-3a9aea753d44533ccdb6f74e4e6176a810c61196.tar.gz spack-3a9aea753d44533ccdb6f74e4e6176a810c61196.tar.bz2 spack-3a9aea753d44533ccdb6f74e4e6176a810c61196.tar.xz spack-3a9aea753d44533ccdb6f74e4e6176a810c61196.zip |
[add] py-autodocsumm: new package (#41309)
Co-authored-by: LydDeb <lyderic.debusschere@eolen.com>
-rw-r--r-- | var/spack/repos/builtin/packages/py-autodocsumm/package.py | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-autodocsumm/package.py b/var/spack/repos/builtin/packages/py-autodocsumm/package.py new file mode 100644 index 0000000000..626fcd1188 --- /dev/null +++ b/var/spack/repos/builtin/packages/py-autodocsumm/package.py @@ -0,0 +1,21 @@ +# Copyright 2013-2023 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 PyAutodocsumm(PythonPackage): + """Extended sphinx autodoc including automatic autosummaries.""" + + homepage = "https://github.com/Chilipp/autodocsumm" + pypi = "autodocsumm/autodocsumm-0.2.11.tar.gz" + + maintainers("LydDeb") + + version("0.2.11", sha256="183212bd9e9f3b58a96bb21b7958ee4e06224107aa45b2fd894b61b83581b9a9") + + depends_on("py-setuptools@61.0:", type="build") + depends_on("py-versioneer+toml", type="build") + depends_on("py-sphinx@2.2:7", type=("build", "run")) |