1{ lib 2, buildPythonPackage 3, fetchPypi 4, isPyPy 5, paramiko 6}: 7 8buildPythonPackage rec { 9 pname = "pysftp"; 10 version = "0.2.9"; 11 disabled = isPyPy; 12 13 src = fetchPypi { 14 inherit pname version; 15 sha256 = "0jl5qix5cxzrv4lb8rfpjkpcghbkacnxkb006ikn7mkl5s05mxgv"; 16 }; 17 18 propagatedBuildInputs = [ paramiko ]; 19 20 meta = with lib; { 21 homepage = "https://bitbucket.org/dundeemt/pysftp"; 22 description = "A friendly face on SFTP"; 23 license = licenses.mit; 24 longDescription = '' 25 A simple interface to SFTP. The module offers high level abstractions 26 and task based routines to handle your SFTP needs. Checkout the Cook 27 Book, in the docs, to see what pysftp can do for you. 28 ''; 29 }; 30 31}