nixpkgs/pkgs/development/tools/backblaze-b2/default.nix

50 lines
1.1 KiB
Nix
Raw Normal View History

2020-09-25 20:29:52 +00:00
{
fetchFromGitHub,
lib,
python3Packages,
2017-12-02 13:42:13 +00:00
}:
2016-02-03 23:45:01 +00:00
2020-09-25 20:29:52 +00:00
python3Packages.buildPythonApplication rec {
2017-12-02 13:42:13 +00:00
pname = "backblaze-b2";
2020-09-25 20:29:52 +00:00
version = "2.0.2";
2016-02-03 23:45:01 +00:00
src = fetchFromGitHub {
owner = "Backblaze";
repo = "B2_Command_Line_Tool";
2017-12-02 13:42:13 +00:00
rev = "v${version}";
2020-09-25 20:29:52 +00:00
sha256 = "00zs0a580vvfm2w4ja68mc46360p475wlgagjkq1hi4m8s4qwd75";
2016-02-03 23:45:01 +00:00
};
2020-09-25 20:29:52 +00:00
propagatedBuildInputs = with python3Packages; [
b2sdk
class-registry
setuptools
];
2016-03-06 17:14:25 +00:00
2020-09-25 20:29:52 +00:00
checkInputs = with python3Packages; [
nose
];
2016-02-03 23:45:01 +00:00
2020-09-25 20:29:52 +00:00
# doCheck = false;
checkPhase = ''
nosetests
'';
2016-03-06 17:14:25 +00:00
postInstall = ''
mv "$out/bin/b2" "$out/bin/backblaze-b2"
2020-09-25 20:29:52 +00:00
sed 's/b2/backblaze-b2/' -i contrib/bash_completion/b2
2016-03-06 17:14:25 +00:00
mkdir -p "$out/etc/bash_completion.d"
cp contrib/bash_completion/b2 "$out/etc/bash_completion.d/backblaze-b2"
2016-02-03 23:45:01 +00:00
'';
2017-12-02 13:42:13 +00:00
meta = with lib; {
description = "Command-line tool for accessing the Backblaze B2 storage service";
homepage = "https://github.com/Backblaze/B2_Command_Line_Tool";
2016-03-06 17:14:25 +00:00
license = licenses.mit;
maintainers = with maintainers; [ hrdinka kevincox ];
platforms = platforms.unix;
2016-02-03 23:45:01 +00:00
};
}