summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-md-environ/package.py
blob: 27dc28232c7f776b24b4d6b69688b9066c21a5b0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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 PyMdEnviron(PythonPackage):
    """This is an extension to Python-Markdown which allows environment variables
    to be used in the text."""

    pypi = "md-environ/md-environ-0.1.0.tar.gz"

    maintainers("wscullin")

    version("0.1.0", sha256="fe3c2a255af523d6f522831c699336cd71f9d543714067d93206ed35836f1793")

    depends_on("py-setuptools", type="build")

    depends_on("py-markdown", type=("build", "run"))