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

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