spack/var/spack/repos/builtin/packages/py-snuggs/package.py
Todd Gamblin 3118647802
Update copyright year to 2024 (#41919)
It was time to run `spack license update-copyright-year` again.
2024-01-02 09:21:30 +01:00

23 lines
736 B
Python

# Copyright 2013-2024 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 PySnuggs(PythonPackage):
"""Snuggs are s-expressions for Numpy"""
homepage = "https://github.com/mapbox/snuggs"
url = "https://github.com/mapbox/snuggs/archive/1.4.1.zip"
license("MIT")
version("1.4.1", sha256="b37ed4e11c5f372695dc6fe66fce6cede124c90a920fe4726c970c9293b71233")
depends_on("py-setuptools", type="build")
depends_on("py-numpy", type=("build", "run"))
depends_on("py-click", type=("build", "run"))
depends_on("py-pyparsing", type=("build", "run"))