Commit ffbfb58c authored by phaer's avatar phaer
Browse files

python3Packages.b2sdk: 2.10.2 -> 2.10.3

parent b8e06a90
Loading
Loading
Loading
Loading
+10 −6
Original line number Diff line number Diff line
@@ -4,8 +4,8 @@
  fetchFromGitHub,
  logfury,
  annotated-types,
  packaging,
  pdm-backend,
  hatchling,
  hatch-vcs,
  pytest-lazy-fixtures,
  pytest-mock,
  pytest-timeout,
@@ -14,27 +14,30 @@
  pythonOlder,
  requests,
  responses,
  tenacity,
  tqdm,
  typing-extensions,
}:

buildPythonPackage rec {
  pname = "b2sdk";
  version = "2.10.2";
  version = "2.10.3";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "Backblaze";
    repo = "b2-sdk-python";
    tag = "v${version}";
    hash = "sha256-RWHD1ARPSKHmGKY0xdCBn3Qj4GxAfn4o8eacMQ5RT1k=";
    hash = "sha256-Gu4MRfjNWuwEFn13U49dEndWA/HNPwrQdX9VEz1ny+M=";
  };

  build-system = [ pdm-backend ];
  build-system = [
    hatchling
    hatch-vcs
  ];

  dependencies = [
    annotated-types
    packaging
    logfury
    requests
  ]
@@ -46,6 +49,7 @@ buildPythonPackage rec {
    pytest-timeout
    pytestCheckHook
    responses
    tenacity
    tqdm
  ];