summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-python-multipart/package.py
blob: 0af95b14b7f1af51af84a1485d168ee7f275fa1b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# 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 PyPythonMultipart(PythonPackage):
    """A streaming multipart parser for Python"""

    homepage = "https://github.com/andrew-d/python-multipart"
    pypi = "python-multipart/python-multipart-0.0.5.tar.gz"

    license("Apache-2.0")

    version("0.0.5", sha256="f7bb5f611fc600d15fa47b3974c8aa16e93724513b49b5f95c81e6624c83fa43")

    depends_on("py-setuptools", type="build")

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