backblaze-b2: 2.0.2 -> 2.1.0

This commit is contained in:
Sandro Jäckel 2020-11-24 22:36:26 +01:00
parent bffb773018
commit 6fbb17f1c5
No known key found for this signature in database
GPG key ID: 3AF5A43A3EECC2E5

View file

@ -1,34 +1,29 @@
{
fetchFromGitHub,
lib,
python3Packages,
}:
{ fetchFromGitHub, lib, python3Packages }:
python3Packages.buildPythonApplication rec {
pname = "backblaze-b2";
version = "2.0.2";
version = "2.1.0";
src = fetchFromGitHub {
owner = "Backblaze";
repo = "B2_Command_Line_Tool";
rev = "v${version}";
sha256 = "00zs0a580vvfm2w4ja68mc46360p475wlgagjkq1hi4m8s4qwd75";
sha256 = "1kkpvxqgh5pw4kr8lh5gy9d7960hv9zvajbjiqhj6xgykwbpbgmq";
};
propagatedBuildInputs = with python3Packages; [
b2sdk
class-registry
phx-class-registry
setuptools
];
checkInputs = with python3Packages; [
nose
];
checkInputs = with python3Packages; [ pytestCheckHook ];
# doCheck = false;
checkPhase = ''
nosetests
'';
disabledTests = [
"test_files_headers"
"test_integration"
];
postInstall = ''
mv "$out/bin/b2" "$out/bin/backblaze-b2"