2021-01-02 15:10:28 +08:00
|
|
|
# Copyright 2013-2021 Lawrence Livermore National Security, LLC and other
|
2019-10-26 10:27:29 +08:00
|
|
|
# Spack Project Developers. See the top-level COPYRIGHT file for details.
|
|
|
|
#
|
|
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
|
|
|
|
from spack import *
|
|
|
|
|
|
|
|
|
|
|
|
class PyPkginfo(PythonPackage):
|
|
|
|
"""Query metadatdata from sdists / bdists / installed packages."""
|
|
|
|
|
|
|
|
homepage = "https://code.launchpad.net/~tseaver/pkginfo/trunk"
|
2020-12-30 08:44:04 +08:00
|
|
|
pypi = "pkginfo/pkginfo-1.5.0.1.tar.gz"
|
2019-10-26 10:27:29 +08:00
|
|
|
|
|
|
|
version('1.5.0.1', sha256='7424f2c8511c186cd5424bbf31045b77435b37a8d604990b79d4e70d741148bb')
|
|
|
|
|
2020-09-15 14:30:59 +08:00
|
|
|
depends_on('py-setuptools', type=('build', 'run'))
|