17 lines
572 B
Python
17 lines
572 B
Python
# Copyright 2013-2022 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 PySshtunnel(PythonPackage):
|
|
"""Pure python SSH tunnels."""
|
|
|
|
homepage = "https://github.com/pahaz/sshtunnel"
|
|
pypi = "sshtunnel/sshtunnel-0.1.5.tar.gz"
|
|
|
|
version('0.1.5', sha256='c813fdcda8e81c3936ffeac47cb69cfb2d1f5e77ad0de656c6dab56aeebd9249')
|
|
|
|
depends_on('py-setuptools', type='build')
|
|
depends_on('py-paramiko@1.15.2:', type=('build', 'run'))
|