pythonPackages.pysftp: init at 0.2.8

This commit is contained in:
Lancelot SIX 2015-06-17 21:44:56 +02:00 committed by Lancelot SIX
parent bbe4307715
commit 39863c04ee

View File

@ -9336,6 +9336,29 @@ let
propagatedBuildInputs = with self; [ unittest2 ];
};
pysftp = buildPythonPackage rec {
name = "pysftp-${version}";
version = "0.2.8";
disabled = isPyPy;
src = pkgs.fetchurl {
url = "https://pypi.python.org/packages/source/p/pysftp/${name}.tar.gz";
sha256 = "1d69z8yngciksch1i8rivy1xl8f6g6sb7c3kk5cm3pf8304q6hhm";
};
propagatedBuildInputs = with self; [ paramiko ];
meta = {
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.
'';
};
};
python3pika = buildPythonPackage {
name = "python3-pika-0.9.14";