py-sphinx-fortran: new package (#46401)

This commit is contained in:
Richard Berger 2024-09-22 08:52:23 -06:00 committed by GitHub
parent a608f83bfc
commit 98b149d711
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -0,0 +1,26 @@
# Copyright 2013-2024 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 PySphinxFortran(PythonPackage):
"""Fortran domain and autodoc extensions to Sphinx"""
homepage = "https://sphinx-fortran.readthedocs.io"
pypi = "sphinx-fortran/sphinx-fortran-1.1.1.tar.gz"
git = "https://github.com/VACUMM/sphinx-fortran.git"
maintainers("rbberger")
license("CeCILL-2.1")
version("master", branch="master")
version("1.1.1", sha256="e912e6b292e80768ad3cf580a560a4752c2c077eda4a1bbfc3a4ca0f11fb8ee1")
depends_on("py-sphinx@1:")
depends_on("py-numpy@1:")
depends_on("py-six")
depends_on("py-future")