2018-07-21 01:44:44 +01:00
|
|
|
{ lib, buildPythonApplication, fetchFromGitHub
|
2017-12-02 13:42:13 +00:00
|
|
|
, arrow, futures, logfury, requests, six, tqdm
|
|
|
|
}:
|
2016-02-03 23:45:01 +00:00
|
|
|
|
2017-12-02 13:42:13 +00:00
|
|
|
buildPythonApplication rec {
|
|
|
|
pname = "backblaze-b2";
|
|
|
|
version = "1.1.0";
|
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}";
|
|
|
|
sha256 = "0697rcdsmxz51p4b8m8klx2mf5xnx6vx56vcf5jmzidh8mc38a6z";
|
2016-02-03 23:45:01 +00:00
|
|
|
};
|
|
|
|
|
2017-12-02 13:42:13 +00:00
|
|
|
propagatedBuildInputs = [ arrow futures logfury requests six tqdm ];
|
2016-03-06 17:14:25 +00:00
|
|
|
|
2016-02-03 23:45:01 +00:00
|
|
|
checkPhase = ''
|
|
|
|
python test_b2_command_line.py test
|
|
|
|
'';
|
|
|
|
|
2016-03-06 17:14:25 +00:00
|
|
|
postInstall = ''
|
|
|
|
mv "$out/bin/b2" "$out/bin/backblaze-b2"
|
|
|
|
|
|
|
|
sed 's/^have b2 \&\&$/have backblaze-b2 \&\&/' -i contrib/bash_completion/b2
|
|
|
|
sed 's/^\(complete -F _b2\) b2/\1 backblaze-b2/' -i contrib/bash_completion/b2
|
|
|
|
|
|
|
|
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; {
|
2016-02-27 17:24:00 +00:00
|
|
|
description = "Command-line tool for accessing the Backblaze B2 storage service";
|
2016-03-06 17:14:25 +00:00
|
|
|
homepage = https://github.com/Backblaze/B2_Command_Line_Tool;
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ hrdinka kevincox ];
|
|
|
|
platforms = platforms.unix;
|
2016-02-03 23:45:01 +00:00
|
|
|
};
|
|
|
|
}
|