mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 18:03:04 +00:00
755b915a15
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
33 lines
745 B
Nix
33 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.
|
|
'';
|
|
};
|
|
}
|