
- [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
18 lines
674 B
Python
18 lines
674 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 PyStdlibList(PythonPackage):
|
|
"""This package includes lists of all of the standard libraries
|
|
for Python, along with the code for scraping the official Python
|
|
docs to get said lists."""
|
|
|
|
pypi = "stdlib-list/stdlib-list-0.6.0.tar.gz"
|
|
|
|
version('0.6.0', sha256='133cc99104f5a4e1604dc88ebb393529bd4c2b99ae7e10d46c0b596f3c67c3f0')
|
|
|
|
depends_on('py-functools32', when="^python@:3.1", type=('build', 'run'))
|
|
depends_on('py-setuptools', type='build')
|