mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 09:23:01 +00:00
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:
parent
9d78971007
commit
9ea70cf76f
@ -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 {
|
||||
|
Loading…
Reference in New Issue
Block a user