spack/var/spack/repos/builtin/packages/nanopb/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

20 lines
645 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 Nanopb(CMakePackage):
"""Nanopb is a small code-size Protocol Buffers implementation
in ansi C."""
homepage = "https://jpa.kapsi.fi/nanopb/"
url = "https://github.com/nanopb/nanopb/archive/0.3.9.1.tar.gz"
version("0.3.9.1", sha256="b22d1f86d4adb2aa0436a277c4a59a5adfc467cafeb9bf405c27ef136599bbb3")
depends_on("protobuf", type=("build"))
depends_on("py-protobuf", type=("build"))