borgbackup: only include pyfuse3 when not on darwin

It includes the fuse package which does not eval on darwin.
This commit is contained in:
Martin Weinelt 2021-07-14 14:39:44 +02:00
parent c4bfe87fc3
commit 090638e14e
No known key found for this signature in database
GPG key ID: 87C1E9888F856759

View file

@ -46,6 +46,7 @@ python3.pkgs.buildPythonApplication rec {
cython
llfuse
packaging
] ++ lib.optionals (!stdenv.isDarwin) [
pyfuse3
];