From 9ea70cf76f37f31c63626ef47bdf5e3727633184 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B8rn=20Forsman?= Date: Sat, 29 Jul 2023 22:21:52 +0200 Subject: [PATCH] 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. --- pkgs/applications/networking/sync/backintime/common.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/networking/sync/backintime/common.nix b/pkgs/applications/networking/sync/backintime/common.nix index 71eece9e3bac..059716277032 100644 --- a/pkgs/applications/networking/sync/backintime/common.nix +++ b/pkgs/applications/networking/sync/backintime/common.nix @@ -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 {