spack/var/spack/repos/builtin/packages/py-a2wsgi/package.py
Todd Gamblin 3118647802
Update copyright year to 2024 (#41919)
It was time to run `spack license update-copyright-year` again.
2024-01-02 09:21:30 +01:00

24 lines
759 B
Python

# 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 PyA2wsgi(PythonPackage):
"""Convert WSGI app to ASGI app or ASGI app to WSGI app."""
homepage = "https://github.com/abersheeran/a2wsgi"
pypi = "a2wsgi/a2wsgi-1.6.0.tar.gz"
license("Apache-2.0")
version("1.7.0", sha256="a906f62c0250eb0201120b93417dd0b12b105b5db35af431bfe86ef0dc5bbab2")
version("1.6.0", sha256="67a9902db6da72c268a24d4e5d01348f736980a577279b7df801c8902aba8554")
depends_on("python@3.6.2:", type=("build", "run"))
depends_on("py-pdm-pep517@1.0.0:", type=("build", "run"))