2019-01-01 14:04:23 +08:00
|
|
|
# Copyright 2013-2019 Lawrence Livermore National Security, LLC and other
|
2018-10-08 04:52:23 +08:00
|
|
|
# Spack Project Developers. See the top-level COPYRIGHT file for details.
|
2016-05-12 12:22:25 +08:00
|
|
|
#
|
2018-10-08 04:52:23 +08:00
|
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
|
2015-01-21 01:39:21 +08:00
|
|
|
from spack import *
|
2016-08-10 16:50:00 +08:00
|
|
|
|
2015-01-21 01:39:21 +08:00
|
|
|
|
2017-01-17 10:13:37 +08:00
|
|
|
class PyVirtualenv(PythonPackage):
|
2015-01-21 01:39:21 +08:00
|
|
|
"""virtualenv is a tool to create isolated Python environments."""
|
|
|
|
|
2017-03-18 05:25:48 +08:00
|
|
|
homepage = "https://virtualenv.pypa.io/"
|
2019-10-21 00:11:23 +08:00
|
|
|
url = "https://pypi.io/packages/source/v/virtualenv/virtualenv-16.7.6.tar.gz"
|
2017-03-18 05:25:48 +08:00
|
|
|
|
2019-10-21 00:11:23 +08:00
|
|
|
version('16.7.6', sha256='5d370508bf32e522d79096e8cbea3499d47e624ac7e11e9089f9397a0b3318df')
|
2019-02-28 02:45:28 +08:00
|
|
|
version('16.4.1', sha256='5a3ecdfbde67a4a3b3111301c4d64a5b71cf862c8c42958d30cf3253df1f29dd')
|
2019-10-11 13:44:41 +08:00
|
|
|
version('16.0.0', sha256='ca07b4c0b54e14a91af9f34d0919790b016923d157afda5efdde55c96718f752')
|
|
|
|
version('15.1.0', sha256='02f8102c2436bb03b3ee6dede1919d1dac8a427541652e5ec95171ec8adbc93a')
|
|
|
|
version('15.0.1', sha256='1a74278b8adb383ce4c7619e33c753b1eb7b58dc1e449601c096ca4b76125f84')
|
|
|
|
version('13.0.1', sha256='36c2cfae0f9c6462264bb19c478fc6bab3478cf0575f1027452e975a1ed84dbd')
|
|
|
|
version('1.11.6', sha256='3e7a4c151e2ee97f51db0215bfd2a073b04a91e9786df6cb67c916f16abe04f7')
|
2017-03-18 05:25:48 +08:00
|
|
|
|
2019-10-21 00:11:23 +08:00
|
|
|
depends_on('python@2.7:2.8,3.4:', type=('build', 'run'))
|
2015-01-21 01:39:21 +08:00
|
|
|
|
2017-03-18 05:25:48 +08:00
|
|
|
# not just build-time, requires pkg_resources
|
2019-10-21 00:11:23 +08:00
|
|
|
depends_on('py-setuptools@40.6.3:', type=('build', 'run'))
|