duplicity: add empty meta.maintainers, remove default meta.platforms, other cleanup

+10 -10
+10 -10
pkgs/tools/backup/duplicity/default.nix
··· 1 - { lib, stdenv 2 , fetchFromGitLab 3 , python3 4 , librsync ··· 11 , makeWrapper 12 , gettext 13 }: 14 - let 15 - pythonPackages = python3.pkgs; 16 - in 17 - pythonPackages.buildPythonApplication rec { 18 pname = "duplicity"; 19 version = "0.8.23"; 20 ··· 51 nativeBuildInputs = [ 52 makeWrapper 53 gettext 54 - pythonPackages.wrapPython 55 - pythonPackages.setuptools-scm 56 ]; 57 buildInputs = [ 58 librsync 59 ]; 60 61 - pythonPath = with pythonPackages; [ 62 b2sdk 63 boto3 64 cffi ··· 82 par2cmdline # Add 'par2' to PATH. 83 ] ++ lib.optionals stdenv.isLinux [ 84 util-linux # Add 'setsid' to PATH. 85 - ] ++ (with pythonPackages; [ 86 lockfile 87 mock 88 pexpect ··· 127 description = "Encrypted bandwidth-efficient backup using the rsync algorithm"; 128 homepage = "https://duplicity.gitlab.io/duplicity-web/"; 129 license = licenses.gpl2Plus; 130 - platforms = platforms.unix; 131 }; 132 }
··· 1 + { lib 2 + , stdenv 3 , fetchFromGitLab 4 , python3 5 , librsync ··· 12 , makeWrapper 13 , gettext 14 }: 15 + 16 + python3.pkgs.buildPythonApplication rec { 17 pname = "duplicity"; 18 version = "0.8.23"; 19 ··· 50 nativeBuildInputs = [ 51 makeWrapper 52 gettext 53 + python3.pkgs.wrapPython 54 + python3.pkgs.setuptools-scm 55 ]; 56 + 57 buildInputs = [ 58 librsync 59 ]; 60 61 + pythonPath = with python3.pkgs; [ 62 b2sdk 63 boto3 64 cffi ··· 82 par2cmdline # Add 'par2' to PATH. 83 ] ++ lib.optionals stdenv.isLinux [ 84 util-linux # Add 'setsid' to PATH. 85 + ] ++ (with python3.pkgs; [ 86 lockfile 87 mock 88 pexpect ··· 127 description = "Encrypted bandwidth-efficient backup using the rsync algorithm"; 128 homepage = "https://duplicity.gitlab.io/duplicity-web/"; 129 license = licenses.gpl2Plus; 130 + maintainers = with maintainers; [ ]; 131 }; 132 }