diff options
| author | Bjørn Forsman <bjorn.forsman@gmail.com> | 2023-07-29 22:21:52 +0200 |
|---|---|---|
| committer | Bjørn Forsman <bjorn.forsman@gmail.com> | 2023-07-31 16:24:32 +0200 |
| commit | 9ea70cf76f37f31c63626ef47bdf5e3727633184 (patch) | |
| tree | 0ed83ab1bdfcf2541dffd2a9e894d4391713d15e | |
| parent | nixos/boot/initrd-network: add option to enable udhcpc (#240406) (diff) | |
| download | nixpkgs-9ea70cf76f37f31c63626ef47bdf5e3727633184.tar.gz | |
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.
| -rw-r--r-- | pkgs/applications/networking/sync/backintime/common.nix | 2 |
1 files changed, 1 insertions, 1 deletions
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 { |
