summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-gunicorn/package.py
blob: 372afb9cc6823c93e5064ddf57a90375ad3fc63f (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-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 PyGunicorn(PythonPackage):
    """WSGI HTTP Server for UNIX"""

    homepage = "https://gunicorn.org"
    pypi = "gunicorn/gunicorn-20.1.0.tar.gz"

    license("MIT")

    version("20.1.0", sha256="e0a968b5ba15f8a328fdfd7ab1fcb5af4470c28aaf7e55df02a99bc13138e6e8")

    depends_on("python@3.5:", type=("build", "run"))
    depends_on("py-setuptools@3:", type=("build", "run"))