You've already forked macports-ports
mirror of
https://github.com/encounter/macports-ports.git
synced 2026-03-30 11:29:27 -07:00
42 lines
1.5 KiB
Tcl
42 lines
1.5 KiB
Tcl
# -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4
|
|
|
|
PortSystem 1.0
|
|
PortGroup python 1.0
|
|
|
|
name py-paramiko
|
|
version 2.7.2
|
|
revision 0
|
|
categories-append net security
|
|
platforms darwin
|
|
license LGPL-2.1+
|
|
supported_archs noarch
|
|
|
|
python.versions 27 35 36 37 38 39
|
|
|
|
maintainers {stromnov @stromnov} openmaintainer
|
|
|
|
description Native Python SSHv2 protocol library
|
|
|
|
long_description This is a library for making SSH2 connections (client \
|
|
or server). Emphasis is on using SSH2 as an alternative \
|
|
to SSL for making secure connections between python \
|
|
scripts. All major ciphers and hash methods are \
|
|
supported. SFTP client and server mode are both \
|
|
supported too.
|
|
|
|
homepage https://github.com/paramiko/paramiko/
|
|
|
|
checksums rmd160 7231323b3c46dc16da0a34490f7866caad54838b \
|
|
sha256 7f36f4ba2c0d81d219f4595e35f70d56cc94f9ac40a6acdf51d6ca210ce65035 \
|
|
size 1069537
|
|
|
|
if {${name} ne ${subport}} {
|
|
depends_build-append \
|
|
port:py${python.version}-setuptools
|
|
depends_lib-append port:py${python.version}-bcrypt \
|
|
port:py${python.version}-cryptography \
|
|
port:py${python.version}-pynacl
|
|
|
|
livecheck.type none
|
|
}
|