From d769983d5a353fcaa5d485f26a5aa1afd23ae6f7 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sun, 24 Oct 2021 21:15:00 +0200 Subject: [PATCH] python3Packages.b2sdk: 1.12.0 -> 1.13.0 --- pkgs/development/python-modules/b2sdk/default.nix | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/pkgs/development/python-modules/b2sdk/default.nix b/pkgs/development/python-modules/b2sdk/default.nix index d81c374670fd..ea745dba369c 100644 --- a/pkgs/development/python-modules/b2sdk/default.nix +++ b/pkgs/development/python-modules/b2sdk/default.nix @@ -16,12 +16,12 @@ buildPythonPackage rec { pname = "b2sdk"; - version = "1.12.0"; + version = "1.13.0"; disabled = isPy27; src = fetchPypi { inherit pname version; - sha256 = "sha256-PsImSuK0IVY9EwpLKlP5ZFS6A7j2iJOtUg/GUcQTJR0="; + sha256 = "sha256-Q9B85c+WhazDeXsMR2S0aId32xLY8BAuYRj4QD21x1k="; }; nativeBuildInputs = [ @@ -57,7 +57,9 @@ buildPythonPackage rec { "test_large_file" ]; - pythonImportsCheck = [ "b2sdk" ]; + pythonImportsCheck = [ + "b2sdk" + ]; meta = with lib; { description = "Client library and utilities for access to B2 Cloud Storage (backblaze)";