summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/tensorflow-serving-client/package.py
blob: 732733e593ee32b364f55b3084e2e900fccb5174 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# 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 TensorflowServingClient(CMakePackage):
    """A prebuilt tensorflow serving client from the tensorflow serving
       proto files"""

    homepage = "https://github.com/figroc/tensorflow-serving-client"
    url      = "https://github.com/figroc/tensorflow-serving-client/archive/v2.0.0.tar.gz"

    version('2.0.0', sha256='55310ad484f257173ad5194df7f7116b2049260c3d29049ef8d789d1d8bd9948')

    depends_on('protobuf')
    depends_on('grpc')