27 lines
852 B
Python
27 lines
852 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 PerlTestXmlSimple(PerlPackage):
|
|
"""Easy testing for XML"""
|
|
|
|
homepage = "https://metacpan.org/pod/Test::XML::Simple"
|
|
url = "https://cpan.metacpan.org/authors/id/M/MC/MCMAHON/Test-XML-Simple-1.05.tar.gz"
|
|
|
|
maintainers("EbiArnie")
|
|
|
|
license("Artistic-1.0")
|
|
|
|
version("1.05", sha256="c60801a3459e7bdad4cd8007a3c94aede818a829d74e70261e6c2758b227bd53")
|
|
|
|
depends_on("perl-test-longstring", type=("build", "run", "test"))
|
|
depends_on("perl-xml-libxml@1.99:", type=("build", "run", "test"))
|
|
|
|
# The test suite from upstream is failing, so we just skip the tests
|
|
def check(self):
|
|
pass
|