2020-11-24 21:36:26 +00:00
|
|
|
{ fetchFromGitHub, lib, python3Packages }:
|
2016-02-03 23:45:01 +00:00
|
|
|
|
2021-05-08 12:53:30 +01:00
|
|
|
let
|
|
|
|
python3Packages2 = python3Packages.override {
|
|
|
|
overrides = self: super: {
|
|
|
|
arrow = self.callPackage ../../python-modules/arrow/2.nix { };
|
|
|
|
};
|
|
|
|
};
|
|
|
|
in
|
|
|
|
let
|
|
|
|
python3Packages = python3Packages2; # two separate let … in to avoid infinite recursion
|
|
|
|
in
|
2020-09-25 21:29:52 +01:00
|
|
|
python3Packages.buildPythonApplication rec {
|
2017-12-02 13:42:13 +00:00
|
|
|
pname = "backblaze-b2";
|
2021-05-08 12:53:30 +01:00
|
|
|
version = "2.4.0";
|
2016-02-03 23:45:01 +00:00
|
|
|
|
2021-05-08 12:53:30 +01:00
|
|
|
src = python3Packages.fetchPypi {
|
|
|
|
inherit version;
|
|
|
|
pname = "b2";
|
|
|
|
sha256 = "sha256-nNQDdSjUolj3PjWRn1fPBAEtPlgeent2PxzHqwH1Z6s=";
|
2016-02-03 23:45:01 +00:00
|
|
|
};
|
|
|
|
|
2021-05-08 12:53:30 +01:00
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace setup.py \
|
|
|
|
--replace 'setuptools_scm<6.0' 'setuptools_scm'
|
|
|
|
'';
|
|
|
|
|
2020-09-25 21:29:52 +01:00
|
|
|
propagatedBuildInputs = with python3Packages; [
|
|
|
|
b2sdk
|
|
|
|
class-registry
|
2020-11-24 21:36:26 +00:00
|
|
|
phx-class-registry
|
2020-09-25 21:29:52 +01:00
|
|
|
setuptools
|
2021-05-08 12:53:30 +01:00
|
|
|
docutils
|
|
|
|
rst2ansi
|
|
|
|
];
|
|
|
|
|
|
|
|
nativeBuildInputs = with python3Packages; [
|
|
|
|
setuptools-scm
|
2020-09-25 21:29:52 +01:00
|
|
|
];
|
2016-03-06 17:14:25 +00:00
|
|
|
|
2020-11-24 21:36:26 +00:00
|
|
|
checkInputs = with python3Packages; [ pytestCheckHook ];
|
2016-02-03 23:45:01 +00:00
|
|
|
|
2020-11-24 21:36:26 +00:00
|
|
|
disabledTests = [
|
|
|
|
"test_files_headers"
|
|
|
|
"test_integration"
|
|
|
|
];
|
2018-09-02 07:45:09 +01:00
|
|
|
|
2016-03-06 17:14:25 +00:00
|
|
|
postInstall = ''
|
|
|
|
mv "$out/bin/b2" "$out/bin/backblaze-b2"
|
|
|
|
|
2020-09-25 21:29:52 +01:00
|
|
|
sed 's/b2/backblaze-b2/' -i contrib/bash_completion/b2
|
2016-03-06 17:14:25 +00:00
|
|
|
|
2020-11-12 21:22:18 +00:00
|
|
|
mkdir -p "$out/share/bash-completion/completions"
|
|
|
|
cp contrib/bash_completion/b2 "$out/share/bash-completion/completions/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";
|
2020-04-01 02:11:51 +01:00
|
|
|
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
|
|
|
};
|
|
|
|
}
|