# -*- 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.4.1
revision            0
categories-append   net security
platforms           darwin
license             LGPL-2.1+
supported_archs     noarch

python.versions     27 34 35 36

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/
master_sites        pypi:[string index ${python.rootname} 0]/${python.rootname}

distname            ${python.rootname}-${version}

checksums           rmd160  bb44b3ed135910faf5980b6421a4e3e2fae0d571 \
                    sha256  33e36775a6c71790ba7692a73f948b329cf9295a72b0102144b031114bd2a4f3

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 \
                        port:py${python.version}-asn1

    livecheck.type      none
}