2016-10-19 11:09:40 +02:00
|
|
|
{ stdenv, fetchurl, python2Packages, librsync, ncftp, gnupg, rsync, makeWrapper
|
2015-10-10 21:19:30 +02:00
|
|
|
}:
|
2010-02-10 17:51:01 +01:00
|
|
|
|
2014-01-13 16:48:04 +01:00
|
|
|
let
|
2016-05-28 20:54:47 +02:00
|
|
|
version = "0.7.07.1";
|
2016-10-27 17:15:18 +02:00
|
|
|
in python2Packages.buildPythonApplication {
|
2014-01-13 16:48:04 +01:00
|
|
|
name = "duplicity-${version}";
|
2010-02-04 14:42:41 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2015-03-30 04:45:12 +02:00
|
|
|
url = "http://code.launchpad.net/duplicity/0.7-series/${version}/+download/duplicity-${version}.tar.gz";
|
2016-05-28 20:54:47 +02:00
|
|
|
sha256 = "594c6d0e723e56f8a7114d57811c613622d535cafdef4a3643a4d4c89c1904f8";
|
2010-02-04 14:42:41 +01:00
|
|
|
};
|
|
|
|
|
2016-10-27 17:15:18 +02:00
|
|
|
postInstall = ''
|
2010-02-10 17:51:01 +01:00
|
|
|
wrapProgram $out/bin/duplicity \
|
2016-09-09 18:10:19 +02:00
|
|
|
--prefix PATH : "${stdenv.lib.makeBinPath [ gnupg ncftp rsync ]}"
|
2010-02-04 14:42:41 +01:00
|
|
|
'';
|
|
|
|
|
2016-10-27 17:15:18 +02: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 ];
|
2010-02-04 14:42:41 +01:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Encrypted bandwidth-efficient backup using the rsync algorithm";
|
2012-02-06 20:45:18 +01:00
|
|
|
homepage = "http://www.nongnu.org/duplicity";
|
2014-06-19 06:19:00 +02:00
|
|
|
license = stdenv.lib.licenses.gpl2Plus;
|
2016-05-16 22:30:20 +02:00
|
|
|
maintainers = with stdenv.lib.maintainers; [viric peti];
|
2016-12-26 21:55:54 +01:00
|
|
|
platforms = stdenv.lib.platforms.unix;
|
2010-02-04 14:42:41 +01:00
|
|
|
};
|
|
|
|
}
|