python312Packages.pooch 1.8.0 -> 1.8.1 https://github.com/fatiando/pooch/releases attrpath: python312Packages.pooch Checking auto update branch... [version] [version] generic version rewriter does not support multiple hashes [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/3h1dbigjinrhd8lz5l050ghj19shdabi-packages.json.drv building '/nix/store/3h1dbigjinrhd8lz5l050ghj19shdabi-packages.json.drv'... Going to be running update for following packages: - python3.12-pooch-1.8.0 Press Enter key to continue... Running update for: - python3.12-pooch-1.8.0: UPDATING ... - python3.12-pooch-1.8.0: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/python-modules/pooch/default.nix b/pkgs/development/python-modules/pooch/default.nix index 6c3e28cd9b4c..63228be0d9dc 100644 --- a/pkgs/development/python-modules/pooch/default.nix +++ b/pkgs/development/python-modules/pooch/default.nix @@ -16,14 +16,14 @@ buildPythonPackage rec { pname = "pooch"; - version = "1.8.0"; + version = "1.8.1"; format = "pyproject"; disabled = isPy27; src = fetchPypi { inherit pname version; - hash = "sha256-9ZmB/VubXQMtzej0oR6qSSwqxjQ/rjWWov2uNfxUsKA="; + hash = "sha256-J+9jCX3ZpuT50mlPXPvy8KXe+kT8yv7AjWAecx10YnA="; }; nativeBuildInputs = [ No auto update branch exists Old version 1.8.0" not present in staging derivation file with contents: { lib , buildPythonPackage , isPy27 , fetchPypi , setuptools , setuptools-scm , wheel , pytestCheckHook , packaging , platformdirs , requests , tqdm , paramiko , xxhash }: buildPythonPackage rec { pname = "pooch"; version = "1.8.1"; format = "pyproject"; disabled = isPy27; src = fetchPypi { inherit pname version; hash = "sha256-J+9jCX3ZpuT50mlPXPvy8KXe+kT8yv7AjWAecx10YnA="; }; nativeBuildInputs = [ setuptools setuptools-scm wheel ]; propagatedBuildInputs = [ packaging platformdirs requests ]; passthru = { optional-dependencies = { progress = [ tqdm ]; sftp = [ paramiko ]; xxhash = [ xxhash ]; }; }; preCheck = '' export HOME=$TMPDIR ''; nativeCheckInputs = [ pytestCheckHook ]; # tries to touch network disabledTests = [ "check_availability" "decompress" "downloader" "extractprocessor_fails" "integration" "pooch_corrupted" "pooch_custom_url" "pooch_download" "pooch_logging_level" "pooch_update" "processor" "test_fetch" "test_load_registry_from_doi" "test_retrieve" "test_stream_download" ]; meta = with lib; { description = "A friend to fetch your data files."; homepage = "https://github.com/fatiando/pooch"; license = licenses.bsd3; maintainers = with maintainers; [ GuillaumeDesforges ]; }; }