summary refs log tree commit diff
path: root/pkgs/tools/backup
diff options
context:
space:
mode:
authorManuel Reinhardt <reinhardt@syslab.com>2016-10-27 08:31:49 +0100
committerManuel Reinhardt <reinhardt@syslab.com>2016-10-27 08:36:02 +0100
commit8f6470f33a8e330c87283447862045d67a5578be (patch)
tree90a6abbb8ef19c7fc0ce7a4204bcd46d627cb6c4 /pkgs/tools/backup
parent2c6faf39e68624d524543e30f7dfe7d49063e072 (diff)
downloadnixpkgs-8f6470f33a8e330c87283447862045d67a5578be.tar
nixpkgs-8f6470f33a8e330c87283447862045d67a5578be.tar.gz
nixpkgs-8f6470f33a8e330c87283447862045d67a5578be.tar.bz2
nixpkgs-8f6470f33a8e330c87283447862045d67a5578be.tar.lz
nixpkgs-8f6470f33a8e330c87283447862045d67a5578be.tar.xz
nixpkgs-8f6470f33a8e330c87283447862045d67a5578be.tar.zst
nixpkgs-8f6470f33a8e330c87283447862045d67a5578be.zip
duplicity: updated dependencies
fixes #18112
https://github.com/NixOS/nixpkgs/issues/18112
Diffstat (limited to 'pkgs/tools/backup')
-rw-r--r--pkgs/tools/backup/duplicity/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/tools/backup/duplicity/default.nix b/pkgs/tools/backup/duplicity/default.nix
index 3a955bdbfec..c63e6c515a5 100644
--- a/pkgs/tools/backup/duplicity/default.nix
+++ b/pkgs/tools/backup/duplicity/default.nix
@@ -3,7 +3,7 @@
 
 let
   version = "0.7.07.1";
-  inherit (python2Packages) boto ecdsa lockfile paramiko pycrypto python setuptools;
+  inherit (python2Packages) boto cffi cryptography ecdsa enum idna ipaddress lockfile paramiko pyasn1 pycrypto python setuptools six;
 in stdenv.mkDerivation {
   name = "duplicity-${version}";
 
@@ -15,10 +15,10 @@ in stdenv.mkDerivation {
   installPhase = ''
     python setup.py install --prefix=$out
     wrapProgram $out/bin/duplicity \
-      --prefix PYTHONPATH : "$(toPythonPath $out):$(toPythonPath ${pycrypto}):$(toPythonPath ${ecdsa}):$(toPythonPath ${paramiko}):$(toPythonPath ${boto}):$(toPythonPath ${lockfile})" \
+      --prefix PYTHONPATH : "$(toPythonPath $out):$(toPythonPath ${idna}):$(toPythonPath ${cffi}):$(toPythonPath ${ipaddress}):$(toPythonPath ${pyasn1}):$(toPythonPath ${six}):$(toPythonPath ${enum}):$(toPythonPath ${setuptools}):$(toPythonPath ${cryptography}):$(toPythonPath ${pycrypto}):$(toPythonPath ${ecdsa}):$(toPythonPath ${paramiko}):$(toPythonPath ${boto}):$(toPythonPath ${lockfile})" \
       --prefix PATH : "${stdenv.lib.makeBinPath [ gnupg ncftp rsync ]}"
     wrapProgram $out/bin/rdiffdir \
-      --prefix PYTHONPATH : "$(toPythonPath $out):$(toPythonPath ${pycrypto}):$(toPythonPath ${ecdsa}):$(toPythonPath ${paramiko}):$(toPythonPath ${boto}):$(toPythonPath ${lockfile})"
+      --prefix PYTHONPATH : "$(toPythonPath $out):$(toPythonPath ${idna}):$(toPythonPath ${cffi}):$(toPythonPath ${ipaddress}):$(toPythonPath ${pyasn1}):$(toPythonPath ${six}):$(toPythonPath ${enum}):$(toPythonPath ${setuptools}):$(toPythonPath ${cryptography}):$(toPythonPath ${pycrypto}):$(toPythonPath ${ecdsa}):$(toPythonPath ${paramiko}):$(toPythonPath ${boto}):$(toPythonPath ${lockfile})"
   '';
 
   buildInputs = [ python librsync makeWrapper setuptools ];