summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-tuswsgi/package.py
blob: 5efbb80603270f78eef41ff76fff5d75de634ec0 (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
24
25
26
# 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 PyTuswsgi(PythonPackage):
    """python wsgi filter for tus protocol 1.0.0"""

    homepage = "https://github.com/mvdbeek/tusfilter"
    url = "https://pypi.io/packages/py2.py3/t/tuswsgi/tuswsgi-0.5.4-py2.py3-none-any.whl"

    license("MIT")

    version(
        "0.5.4",
        sha256="f681a386254a161a97301a67c01ee7da77419c007d9bc43dbd48d5a987491a5e",
        expand=False,
    )

    depends_on("python@3.6:", type=("build", "run"))

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