about summary refs log tree commit diff
path: root/pkgs/tools/backup/duplicity/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/tools/backup/duplicity/default.nix')
-rw-r--r--pkgs/tools/backup/duplicity/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/tools/backup/duplicity/default.nix b/pkgs/tools/backup/duplicity/default.nix
index fd5c7c60f0c9e..7c344a7e63b4e 100644
--- a/pkgs/tools/backup/duplicity/default.nix
+++ b/pkgs/tools/backup/duplicity/default.nix
@@ -84,7 +84,7 @@ let self = python3.pkgs.buildPythonApplication rec {
     pycrypto
     pydrive2
     future
-  ];
+  ] ++ paramiko.optional-dependencies.invoke;
 
   nativeCheckInputs = [
     gnupg # Add 'gpg' to PATH.
@@ -150,6 +150,7 @@ let self = python3.pkgs.buildPythonApplication rec {
     description = "Encrypted bandwidth-efficient backup using the rsync algorithm";
     homepage = "https://duplicity.gitlab.io/duplicity-web/";
     license = licenses.gpl2Plus;
+    mainProgram = "duplicity";
     maintainers = with maintainers; [ corngood ];
   };
 };