summary refs log tree commit diff
path: root/pkgs/development/python-modules/pysftp/default.nix
blob: 0ed5790a51976be4a0222ccb6f24bbfe82466ca0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{ stdenv
, buildPythonPackage
, fetchPypi
, isPyPy
, paramiko
}:

buildPythonPackage rec {
  pname = "pysftp";
  version = "0.2.9";
  disabled = isPyPy;

  src = fetchPypi {
    inherit pname version;
    sha256 = "0jl5qix5cxzrv4lb8rfpjkpcghbkacnxkb006ikn7mkl5s05mxgv";
  };

  propagatedBuildInputs = [ paramiko ];

  meta = with stdenv.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.
    '';
  };

}