blob: 83b53d94162ec25aa2230c2ee3b2ea663bed7c80 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# 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 PerlCatalystViewJson(PerlPackage):
"""JSON view for your data"""
homepage = "https://metacpan.org/pod/Catalyst::View::JSON"
url = "https://cpan.metacpan.org/authors/id/H/HA/HAARG/Catalyst-View-JSON-0.37.tar.gz"
maintainers("EbiArnie")
license("Artistic-1.0-Perl OR GPL-1.0-or-later")
version("0.37", sha256="c5da3f6e8a77b1c99855de37d58802c0b194e29a7d86c60ed3831cfdd59f9dec")
depends_on("perl-catalyst-runtime", type=("build", "run", "test"))
depends_on("perl-json-maybexs@1.003000:", type=("build", "run", "test"))
depends_on("perl-mro-compat", type=("build", "run", "test"))
|