Files
nixpkgs/pkgs/by-name/ba/backblaze-b2/package.nix
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

112 lines
2.7 KiB
Nix

{
lib,
python3Packages,
fetchFromGitHub,
installShellFiles,
testers,
backblaze-b2,
# executable is renamed to backblaze-b2 by default, to avoid collision with boost's 'b2'
execName ? "backblaze-b2",
}:
python3Packages.buildPythonApplication rec {
pname = "backblaze-b2";
version = "4.4.2";
pyproject = true;
src = fetchFromGitHub {
owner = "Backblaze";
repo = "B2_Command_Line_Tool";
tag = "v${version}";
hash = "sha256-ut1e/A36Tp4pgwZx+S8nYmjg3k/2CmRpdUfz3iOXTz0=";
};
nativeBuildInputs = with python3Packages; [
installShellFiles
argcomplete
];
build-system = with python3Packages; [
pdm-backend
];
dependencies = with python3Packages; [
argcomplete
arrow
b2sdk
phx-class-registry
docutils
rst2ansi
tabulate
tqdm
platformdirs
packaging
setuptools
];
pythonRelaxDeps = [ "phx-class-registry" ];
nativeCheckInputs = with python3Packages; [
backoff
more-itertools
pexpect
pytestCheckHook
pytest-xdist
tenacity
];
preCheck = ''
export HOME=$(mktemp -d)
'';
disabledTestPaths = [
# Test requires network
"test/integration/test_b2_command_line.py"
"test/integration/test_tqdm_closer.py"
# it's hard to make it work on nix
"test/integration/test_autocomplete.py"
"test/unit/test_console_tool.py"
# this one causes successive tests to fail
"test/unit/_cli/test_autocomplete_cache.py"
];
disabledTests = [
# Autocomplete is not successful in a sandbox
"test_autocomplete_installer"
"test_help"
"test_install_autocomplete"
];
postInstall =
lib.optionalString (execName != "b2") ''
mv "$out/bin/b2" "$out/bin/${execName}"
''
+ ''
installShellCompletion --cmd ${execName} \
--bash <(register-python-argcomplete ${execName}) \
--zsh <(register-python-argcomplete ${execName})
'';
passthru.tests.version =
(testers.testVersion {
package = backblaze-b2;
command = "${execName} version --short";
}).overrideAttrs
(old: {
# workaround the error: Permission denied: '/homeless-shelter'
# backblaze-b2 fails to create a 'b2' directory under the XDG config path
preHook = ''
export HOME=$(mktemp -d)
'';
});
meta = with lib; {
description = "Command-line tool for accessing the Backblaze B2 storage service";
homepage = "https://github.com/Backblaze/B2_Command_Line_Tool";
changelog = "https://github.com/Backblaze/B2_Command_Line_Tool/blob/${src.tag}/CHANGELOG.md";
license = licenses.mit;
maintainers = with maintainers; [ hrdinka ];
mainProgram = "backblaze-b2";
};
}