nixpkgs/pkgs/by-name/bo/borgbackup/package.nix
Silvan Mosberger 4f0dadbf38 treewide: format all inactive Nix files
After final improvements to the official formatter implementation,
this commit now performs the first treewide reformat of Nix files using it.
This is part of the implementation of RFC 166.

Only "inactive" files are reformatted, meaning only files that
aren't being touched by any PR with activity in the past 2 months.
This is to avoid conflicts for PRs that might soon be merged.
Later we can do a full treewide reformat to get the rest,
which should not cause as many conflicts.

A CI check has already been running for some time to ensure that new and
already-formatted files are formatted, so the files being reformatted here
should also stay formatted.

This commit was automatically created and can be verified using

    nix-build a08b3a4d19.tar.gz \
      --argstr baseRev b32a094368
    result/bin/apply-formatting $NIXPKGS_PATH
2024-12-10 20:26:33 +01:00

149 lines
2.8 KiB
Nix

{
lib,
stdenv,
acl,
e2fsprogs,
fetchFromGitHub,
libb2,
lz4,
openssh,
openssl,
python3,
xxHash,
zstd,
installShellFiles,
nixosTests,
}:
let
python = python3;
in
python.pkgs.buildPythonApplication rec {
pname = "borgbackup";
version = "1.4.0";
pyproject = true;
src = fetchFromGitHub {
owner = "borgbackup";
repo = "borg";
rev = "refs/tags/${version}";
hash = "sha256-n1hCM7Sp0t2bOJEzErEd1PS/Xc7c+KDmJ4PjQuuF140=";
};
postPatch = ''
# sandbox does not support setuid/setgid/sticky bits
substituteInPlace src/borg/testsuite/archiver.py \
--replace-fail "0o4755" "0o0755"
'';
build-system = with python.pkgs; [
cython
setuptools-scm
pkgconfig
];
nativeBuildInputs = with python.pkgs; [
# docs
sphinxHook
guzzle-sphinx-theme
# shell completions
installShellFiles
];
sphinxBuilders = [
"singlehtml"
"man"
];
buildInputs =
[
libb2
lz4
xxHash
zstd
openssl
]
++ lib.optionals stdenv.hostPlatform.isLinux [
acl
];
dependencies = with python.pkgs; [
msgpack
packaging
(if stdenv.hostPlatform.isLinux then pyfuse3 else llfuse)
];
makeWrapperArgs = [
''--prefix PATH ':' "${openssh}/bin"''
];
postInstall = ''
installShellCompletion --cmd borg \
--bash scripts/shell_completions/bash/borg \
--fish scripts/shell_completions/fish/borg.fish \
--zsh scripts/shell_completions/zsh/_borg
'';
nativeCheckInputs = with python.pkgs; [
e2fsprogs
py
pytest-benchmark
pytest-xdist
pytestCheckHook
];
pytestFlagsArray = [
"--benchmark-skip"
"--pyargs"
"borg.testsuite"
];
disabledTests = [
# fuse: device not found, try 'modprobe fuse' first
"test_fuse"
"test_fuse_allow_damaged_files"
"test_fuse_mount_hardlinks"
"test_fuse_mount_options"
"test_fuse_versions_view"
"test_migrate_lock_alive"
"test_readonly_mount"
# Error: Permission denied while trying to write to /var/{,tmp}
"test_get_cache_dir"
"test_get_keys_dir"
"test_get_security_dir"
"test_get_config_dir"
# https://github.com/borgbackup/borg/issues/6573
"test_basic_functionality"
];
preCheck = ''
export HOME=$TEMP
'';
passthru.tests = {
inherit (nixosTests) borgbackup;
};
outputs = [
"out"
"doc"
"man"
];
disabled = python.pythonOlder "3.9";
meta = with lib; {
changelog = "https://github.com/borgbackup/borg/blob/${src.rev}/docs/changes.rst";
description = "Deduplicating archiver with compression and encryption";
homepage = "https://www.borgbackup.org";
license = licenses.bsd3;
platforms = platforms.unix; # Darwin and FreeBSD mentioned on homepage
mainProgram = "borg";
maintainers = with maintainers; [
dotlambda
globin
];
};
}