fa5436e0a7
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
32 lines
747 B
Nix
32 lines
747 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
isPyPy,
|
|
paramiko,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pysftp";
|
|
version = "0.2.9";
|
|
format = "setuptools";
|
|
disabled = isPyPy;
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "0jl5qix5cxzrv4lb8rfpjkpcghbkacnxkb006ikn7mkl5s05mxgv";
|
|
};
|
|
|
|
propagatedBuildInputs = [ paramiko ];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://bitbucket.org/dundeemt/pysftp";
|
|
description = "A friendly face on SFTP";
|
|
license = licenses.mit;
|
|
longDescription = ''
|
|
A simple interface to SFTP. The module offers high level abstractions
|
|
and task based routines to handle your SFTP needs. Checkout the Cook
|
|
Book, in the docs, to see what pysftp can do for you.
|
|
'';
|
|
};
|
|
}
|