
- [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
20 lines
695 B
Python
20 lines
695 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)
|
|
|
|
from spack import *
|
|
|
|
|
|
class PyStsciDistutils(PythonPackage):
|
|
"""This package contains utilities used to
|
|
package some of STScI's Python projects."""
|
|
|
|
homepage = "https://github.com/spacetelescope/stsci.distutils"
|
|
url = "https://github.com/spacetelescope/stsci.distutils/archive/0.3.8.tar.gz"
|
|
|
|
version('0.3.8', sha256='a52f3ec3b392a9cecd98d143b678c27346cbfa8f34c34698821d7e167907edce')
|
|
|
|
depends_on('py-setuptools', type='build')
|
|
depends_on('py-d2to1', type='build')
|