summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-sshtunnel/package.py
blob: a7e0ea0f9dca2f7e0c8b3ac509b222fe9e31b79c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Copyright 2013-2023 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.package import *


class PySshtunnel(PythonPackage):
    """Pure python SSH tunnels."""

    homepage = "https://github.com/pahaz/sshtunnel"
    pypi = "sshtunnel/sshtunnel-0.1.5.tar.gz"

    license("MIT")

    version("0.1.5", sha256="c813fdcda8e81c3936ffeac47cb69cfb2d1f5e77ad0de656c6dab56aeebd9249")

    depends_on("py-setuptools", type="build")
    depends_on("py-paramiko@1.15.2:", type=("build", "run"))