summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-poster/package.py
blob: d7952fe6cb694f09323b3d2bcf4dd15edc3b75af (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-2019 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 import *


class PyPoster(PythonPackage):
    """Streaming HTTP uploads and multipart/form-data encoding."""

    homepage = "https://pypi.org/project/poster/"
    url      = "https://atlee.ca/software/poster/dist/0.8.1/poster-0.8.1.tar.gz"

    version('0.8.1', sha256='af5bf45da4a916db2b638cffd9e9d6668b33020e2b8ca9f864db79b49331c6ff')

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

    # https://bitbucket.org/chrisatlee/poster/issues/24/not-working-with-python3
    # https://bitbucket.org/chrisatlee/poster/issues/25/poster-connot-work-in-python35
    # Patch created using 2to3
    patch('python3.patch', when='^python@3:')