spack/var/spack/repos/builtin/packages/ps-lite/package.py
2022-07-31 13:29:20 -07:00

23 lines
648 B
Python

# Copyright 2013-2022 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 PsLite(CMakePackage):
"""ps-lite is A light and efficient implementation
of the parameter server framework."""
homepage = "https://github.com/dmlc/ps-lite"
git = "https://github.com/dmlc/ps-lite.git"
version("master", branch="master")
version("20170328", commit="acdb698fa3bb80929ef83bb37c705f025e119b82")
depends_on("protobuf@3:")
depends_on("libzmq")
patch("cmake.patch")