16 lines
556 B
Python
16 lines
556 B
Python
# Copyright 2013-2019 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 import *
|
|
|
|
|
|
class PerlTestRequires(PerlPackage):
|
|
"""Checks to see if the module can be loaded."""
|
|
|
|
homepage = "http://search.cpan.org/~tokuhirom/Test-Requires-0.10/lib/Test/Requires.pm"
|
|
url = "http://search.cpan.org/CPAN/authors/id/T/TO/TOKUHIROM/Test-Requires-0.10.tar.gz"
|
|
|
|
version('0.10', '0d5da779609d0c8fa6f796b45ff8c6f3')
|