a28f6c0756
Deprecation warnings kill the test suite https://github.com/pyinvoke/invoke/issues/829
48 lines
1.2 KiB
Nix
48 lines
1.2 KiB
Nix
{ pkgs
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, cryptography
|
|
, bcrypt
|
|
, invoke
|
|
, pynacl
|
|
, pyasn1
|
|
, pytestCheckHook
|
|
, pytest-relaxed
|
|
, mock
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "paramiko";
|
|
version = "2.8.0";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "e673b10ee0f1c80d46182d3af7751d033d9b573dd7054d2d0aa46be186c3c1d2";
|
|
};
|
|
|
|
propagatedBuildInputs = [ bcrypt cryptography pynacl pyasn1 ];
|
|
|
|
# with python 3.9.6+, the deprecation warnings will fail the test suite
|
|
# see: https://github.com/pyinvoke/invoke/issues/829
|
|
doCheck = false;
|
|
checkInputs = [ invoke pytestCheckHook pytest-relaxed mock ];
|
|
|
|
disabledTestPaths = [
|
|
"tests/test_sftp.py"
|
|
"tests/test_config.py"
|
|
];
|
|
|
|
__darwinAllowLocalNetworking = true;
|
|
|
|
meta = with pkgs.lib; {
|
|
homepage = "https://github.com/paramiko/paramiko/";
|
|
description = "Native Python SSHv2 protocol library";
|
|
license = licenses.lgpl21Plus;
|
|
longDescription = ''
|
|
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.
|
|
'';
|
|
};
|
|
}
|