ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / pysftp / default.nix
blob3333a30bd1ac789158ab76a600cc75bbb0da4524
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , isPyPy
5 , paramiko
6 }:
8 buildPythonPackage rec {
9   pname = "pysftp";
10   version = "0.2.9";
11   disabled = isPyPy;
13   src = fetchPypi {
14     inherit pname version;
15     sha256 = "0jl5qix5cxzrv4lb8rfpjkpcghbkacnxkb006ikn7mkl5s05mxgv";
16   };
18   propagatedBuildInputs = [ paramiko ];
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   };