summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-mkdocs/package.py
blob: d2a6d35b6875d6aa0a324b41a973dc9ebe4b3359 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# 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 PyMkdocs(PythonPackage):
    """MkDocs is a fast, simple and downright gorgeous static site generator
    that's geared towards building project documentation."""

    homepage = "https://www.mkdocs.org/"
    pypi = "mkdocs/mkdocs-1.3.1.tar.gz"

    license("BSD-2-Clause")

    version("1.3.1", sha256="a41a2ff25ce3bbacc953f9844ba07d106233cd76c88bac1f59cb1564ac0d87ed")

    depends_on("python@3.6:", type=("build", "run"))
    depends_on("py-setuptools", type="build")
    depends_on("py-click@3.3:", type=("build", "run"))
    depends_on("py-jinja2@2.10.2:", type=("build", "run"))
    depends_on("py-markdown@3.2.1:3.3", type=("build", "run"))
    depends_on("py-pyyaml@3.10:", type=("build", "run"))
    depends_on("py-watchdog@2.0:", type=("build", "run"))
    depends_on("py-ghp-import@1.0:", type=("build", "run"))
    depends_on("py-pyyaml-env-tag@0.1:", type=("build", "run"))
    depends_on("py-importlib-metadata@4.3:", type=("build", "run"))
    depends_on("py-packaging@20.5:", type=("build", "run"))
    depends_on("py-mergedeep@1.3.4:", type=("build", "run"))