nixpkgs/pkgs/tools/backup/duplicity/default.nix

38 lines
1.2 KiB
Nix
Raw Normal View History

2016-10-19 09:09:40 +00:00
{ stdenv, fetchurl, python2Packages, librsync, ncftp, gnupg, rsync, makeWrapper
}:
2014-01-13 15:48:04 +00:00
let
2016-05-28 18:54:47 +00:00
version = "0.7.07.1";
2016-10-27 15:15:18 +00:00
in python2Packages.buildPythonApplication {
2014-01-13 15:48:04 +00:00
name = "duplicity-${version}";
src = fetchurl {
2015-03-30 02:45:12 +00:00
url = "http://code.launchpad.net/duplicity/0.7-series/${version}/+download/duplicity-${version}.tar.gz";
2016-05-28 18:54:47 +00:00
sha256 = "594c6d0e723e56f8a7114d57811c613622d535cafdef4a3643a4d4c89c1904f8";
};
2016-10-27 15:15:18 +00:00
postInstall = ''
wrapProgram $out/bin/duplicity \
--prefix PATH : "${stdenv.lib.makeBinPath [ gnupg ncftp rsync ]}"
'';
2016-10-27 15:15:18 +00:00
buildInputs = [ librsync makeWrapper ];
# Inputs for tests. These are added to buildInputs when doCheck = true
checkInputs = with python2Packages; [ lockfile mock pexpect ];
# Many problematic tests
doCheck = false;
propagatedBuildInputs = with python2Packages; [ boto cffi cryptography ecdsa enum idna
ipaddress lockfile paramiko pyasn1 pycrypto six ];
meta = {
description = "Encrypted bandwidth-efficient backup using the rsync algorithm";
homepage = "http://www.nongnu.org/duplicity";
license = stdenv.lib.licenses.gpl2Plus;
maintainers = with stdenv.lib.maintainers; [viric peti];
platforms = stdenv.lib.platforms.unix;
};
}