
- [x] add `concretize.lp`, `spack.yaml`, etc. to licensed files - [x] update all licensed files to say 2013-2021 using `spack license update-copyright-year` - [x] appease mypy with some additions to package.py that needed for oneapi.py
19 lines
752 B
Python
19 lines
752 B
Python
# Copyright 2013-2021 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)
|
|
|
|
|
|
class PyPydeps(PythonPackage):
|
|
"""Python module dependency visualization."""
|
|
|
|
pypi = "pydeps/pydeps-1.7.1.tar.gz"
|
|
|
|
version('1.9.0', sha256='ba9b8c7d72cb4dfd3f4dd6b8a250c240d15824850a415fd428f2660ed371361f')
|
|
version('1.7.1', sha256='7eeb8d0ec2713befe81dd0d15eac540e843b1daae13613df1c572528552d6340')
|
|
|
|
depends_on('py-setuptools', type=('build', 'run'))
|
|
depends_on('py-enum34', type=('build', 'run'), when='^python@:3.3.99')
|
|
depends_on('py-stdlib-list', type=('build', 'run'))
|
|
depends_on('py-pyyaml', type=('build', 'run'))
|