summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-paste/package.py
blob: e6ba6554ff24c1d63fc1d3eb46920c6afadf5c2e (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-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 PyPaste(PythonPackage):
    """Tools for using a Web Server Gateway Interface stack"""

    homepage = "https://pythonpaste.readthedocs.io"
    pypi = "Paste/Paste-3.5.2.tar.gz"

    license("MIT")

    version("3.5.2", sha256="d5a7340c30bcdf3023dd0106c8a5c430dd8fe84aeb8113bc7b93f8dd729f4af6")

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

    depends_on("py-six@1.4.0:", type=("build", "run"))