depot/third_party/nixpkgs/pkgs/development/python-modules/pysftp/default.nix
Default email bcb2f287e1 Project import generated by Copybara.
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
2024-06-20 20:27:18 +05:30

32 lines
745 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 = "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.
'';
};
}