
- [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
27 lines
1.1 KiB
Python
27 lines
1.1 KiB
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 PyVirtualenvwrapper(PythonPackage):
|
|
"""virtualenvwrapper is a set of extensions to Ian Bicking's
|
|
virtualenv tool. The extensions include wrappers for creating and
|
|
deleting virtual environments and otherwise managing your development
|
|
workflow, making it easier to work on more than one project at a time
|
|
without introducing conflicts in their dependencies."""
|
|
|
|
homepage = "https://bitbucket.org/virtualenvwrapper/virtualenvwrapper.git"
|
|
pypi = "virtualenvwrapper/virtualenvwrapper-4.8.2.tar.gz"
|
|
|
|
version('4.8.2', sha256='18d8e4c500c4c4ee794f704e050cf2bbb492537532a4521d1047e7dd1ee4e374')
|
|
|
|
depends_on('python@2.6:')
|
|
depends_on('py-virtualenv', type=('build', 'run'))
|
|
depends_on('py-virtualenv-clone', type=('build', 'run'))
|
|
depends_on('py-stevedore', type=('build', 'run'))
|
|
# not just build-time, requires pkg_resources
|
|
depends_on('py-setuptools', type=('build', 'run'))
|