summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-pastedeploy/package.py
blob: 52524a774c2d8e6036332e9a559a99fbd2641a87 (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
# 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 PyPastedeploy(PythonPackage):
    """Load, configure, and compose WSGI applications and servers"""

    homepage = "https://docs.pylonsproject.org/projects/pastedeploy"
    pypi = "PasteDeploy/PasteDeploy-3.0.1.tar.gz"

    license("MIT")

    version("3.0.1", sha256="5f4b4d5fddd39b8947ea727161e366bf55b90efc60a4d1dd7976b9031d0b4e5f")

    depends_on("python@3.7:", type=("build", "run"))
    depends_on("py-setuptools@41:", type="build")

    depends_on("py-importlib-metadata", when="^python@:3.7", type=("build", "run"))