summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-httpbin/package.py
blob: 38990be4686f3261a0570b5b95e54d94ad06ba7a (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-2020 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 PyHttpbin(PythonPackage):
    """HTTP Request and Response Service"""

    homepage = "https://github.com/Runscope/httpbin"
    pypi = "httpbin/httpbin-0.7.0.tar.gz"

    version('0.7.0', sha256='cbb37790c91575f4f15757f42ad41d9f729eb227d5edbe89e4ec175486db8dfa')
    version('0.5.0', sha256='79fbc5d27e4194ea908b0fa18e09a59d95d287c91667aa69bcd010342d1589b5')

    depends_on('py-setuptools', type='build')
    depends_on('py-flask', type=('build', 'run'))
    depends_on('py-markupsafe', type=('build', 'run'))
    depends_on('py-decorator', type=('build', 'run'))
    depends_on('py-itsdangerous', type=('build', 'run'))
    depends_on('py-six', type=('build', 'run'))
    depends_on('py-brotlipy', type=('build', 'run'))
    depends_on('py-raven+flask', type=('build', 'run'))
    depends_on('py-werkzeug@0.14.1:', type=('build', 'run'))