spack/var/spack/repos/builtin/packages/ps-lite/package.py
Harmen Stoppels fce95e2efb
license year bump (#34921)
* license bump year
* fix black issues of modified files
* mypy
* fix 2021 -> 2023
2023-01-18 14:30:17 -08:00

23 lines
648 B
Python

# Copyright 2013-2023 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")