Merge pull request #100503 from rnhmjoj/bup

bup: use python3

authored by Michele Guerini Rocco and committed by GitHub c5c468bd 00275057

+2 -2
+2 -2
pkgs/tools/backup/bup/default.nix
··· 1 1 { stdenv, fetchFromGitHub, makeWrapper 2 - , perl, pandoc, python2Packages, git 2 + , perl, pandoc, python3Packages, git 3 3 , par2cmdline ? null, par2Support ? true 4 4 }: 5 5 ··· 22 22 23 23 buildInputs = [ 24 24 git 25 - (python2Packages.python.withPackages 25 + (python3Packages.python.withPackages 26 26 (p: with p; [ setuptools tornado ] 27 27 ++ stdenv.lib.optionals (!stdenv.isDarwin) [ pyxattr pylibacl fuse ])) 28 28 ];