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.
This commit is contained in:
Bjørn Forsman 2023-07-29 22:21:52 +02:00
parent 9d78971007
commit 9ea70cf76f

View File

@ -2,7 +2,7 @@
python3, rsync, cron, openssh, sshfs-fuse, encfs }:
let
python' = python3.withPackages (ps: with ps; [ dbus-python keyring ]);
python' = python3.withPackages (ps: with ps; [ dbus-python keyring packaging ]);
apps = lib.makeBinPath [ openssh python' cron rsync sshfs-fuse encfs ];
in stdenv.mkDerivation rec {