Unverified Commit 935e868e authored by OTABI Tomoya's avatar OTABI Tomoya Committed by GitHub
Browse files

python312Packages.b2sdk: 2.7.0 -> 2.8.1, backblaze-b2: 4.3.1 -> 4.3.2 (#376487)

parents c02f9093 689f8214
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -11,14 +11,14 @@

python3Packages.buildPythonApplication rec {
  pname = "backblaze-b2";
  version = "4.3.1";
  version = "4.3.2";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "Backblaze";
    repo = "B2_Command_Line_Tool";
    tag = "v${version}";
    hash = "sha256-uWANUb7AV9ADWJ7Ut8qloEhgoXJ62yTSbXrCHVY1tFE=";
    hash = "sha256-I6baipQDQft5bi352W9YXFAVuVqIkEqEfmD9iP2LBqs=";
  };

  nativeBuildInputs = with python3Packages; [
+3 −3
Original line number Diff line number Diff line
@@ -21,7 +21,7 @@

buildPythonPackage rec {
  pname = "b2sdk";
  version = "2.7.0";
  version = "2.8.1";
  pyproject = true;

  disabled = pythonOlder "3.7";
@@ -30,7 +30,7 @@ buildPythonPackage rec {
    owner = "Backblaze";
    repo = "b2-sdk-python";
    tag = "v${version}";
    hash = "sha256-QY2/uWCnIlOHo5wTLxu2Pvh2oNPWRcyDL5TpnZHob7I=";
    hash = "sha256-KUz/OaFZwJPVNCZ1j73SrpWknQmrvwfr5MLVYxOojZc=";
  };

  build-system = [ pdm-backend ];
@@ -75,7 +75,7 @@ buildPythonPackage rec {
  meta = with lib; {
    description = "Client library and utilities for access to B2 Cloud Storage (backblaze)";
    homepage = "https://github.com/Backblaze/b2-sdk-python";
    changelog = "https://github.com/Backblaze/b2-sdk-python/blob/v${version}/CHANGELOG.md";
    changelog = "https://github.com/Backblaze/b2-sdk-python/blob/${src.tag}/CHANGELOG.md";
    license = licenses.mit;
    maintainers = with maintainers; [ pmw ];
  };