python312Packages.b2sdk 1.29.1 -> 1.32.0 https://github.com/Backblaze/b2-sdk-python/releases attrpath: python312Packages.b2sdk Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/8v03cnmznbmvnzhlyirsvd2xcw8s40ah-packages.json.drv building '/nix/store/8v03cnmznbmvnzhlyirsvd2xcw8s40ah-packages.json.drv'... Going to be running update for following packages: - python3.12-b2sdk-1.29.1 Press Enter key to continue... Running update for: - python3.12-b2sdk-1.29.1: UPDATING ... - python3.12-b2sdk-1.29.1: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/python-modules/b2sdk/default.nix b/pkgs/development/python-modules/b2sdk/default.nix index 0ff6214bf5b5..77073efc7aed 100644 --- a/pkgs/development/python-modules/b2sdk/default.nix +++ b/pkgs/development/python-modules/b2sdk/default.nix @@ -19,14 +19,14 @@ buildPythonPackage rec { pname = "b2sdk"; - version = "1.29.1"; + version = "1.32.0"; pyproject = true; disabled = pythonOlder "3.7"; src = fetchPypi { inherit pname version; - hash = "sha256-Talw1P0JnPdU+dDgC8J2TJSOV/LshgQyBbPYEqzKpfA="; + hash = "sha256-RjIbzN2aKVr1LLBdmLXfl3G9343N9or+Op/ffdoVazI="; }; nativeBuildInputs = [ No auto update branch exists Old version 1.29.1" not present in staging derivation file with contents: { lib , stdenv , buildPythonPackage , fetchFromGitHub , glibcLocales , importlib-metadata , logfury , pyfakefs , pytestCheckHook , pytest-lazy-fixture , pytest-mock , pythonOlder , pythonRelaxDepsHook , pdm-backend , requests , tqdm , typing-extensions }: buildPythonPackage rec { pname = "b2sdk"; version = "1.32.0"; pyproject = true; disabled = pythonOlder "3.7"; src = fetchFromGitHub { owner = "Backblaze"; repo = "b2-sdk-python"; rev = "refs/tags/v${version}"; hash = "sha256-xBLMvH51zbrSuBOtMxLeQJt7Wv31OcxBbD72EuLHzuU="; }; nativeBuildInputs = [ pdm-backend pythonRelaxDepsHook ]; pythonRemoveDeps = [ "setuptools" ]; propagatedBuildInputs = [ logfury requests tqdm ] ++ lib.optionals (pythonOlder "3.8") [ importlib-metadata ] ++ lib.optionals (pythonOlder "3.12") [ typing-extensions ]; nativeCheckInputs = [ pytestCheckHook pytest-lazy-fixture pytest-mock pyfakefs ] ++ lib.optionals stdenv.isLinux [ glibcLocales ]; disabledTestPaths = [ # requires aws s3 auth "test/integration/test_download.py" "test/integration/test_upload.py" ]; disabledTests = [ # Test requires an API key "test_raw_api" "test_files_headers" "test_large_file" "test_file_info_b2_attributes" ]; pythonImportsCheck = [ "b2sdk" ]; 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"; license = licenses.mit; maintainers = with maintainers; [ ]; }; }