backintime-common: add missing dependency 'packaging'

Fixes this fatal startup error:

$ nix-build -A backintime-common && ./result/bin/backintime
[...]
ModuleNotFoundError: No module named 'packaging'

Fixes https://github.com/NixOS/nixpkgs/issues/241966.

+1 -1
+1 -1
pkgs/applications/networking/sync/backintime/common.nix
··· 2 2 python3, rsync, cron, openssh, sshfs-fuse, encfs }: 3 3 4 4 let 5 - python' = python3.withPackages (ps: with ps; [ dbus-python keyring ]); 5 + python' = python3.withPackages (ps: with ps; [ dbus-python keyring packaging ]); 6 6 7 7 apps = lib.makeBinPath [ openssh python' cron rsync sshfs-fuse encfs ]; 8 8 in stdenv.mkDerivation rec {