python311Packages.pooch 1.6.0 -> 1.7.0 https://repology.org/project/python:pooch/versions attrpath: python311Packages.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/7yl2jbrc745pzdd94pdlc35hfqrgrwq1-packages.json.drv building '/nix/store/7yl2jbrc745pzdd94pdlc35hfqrgrwq1-packages.json.drv'... Going to be running update for following packages: - python3.11-pooch-1.6.0 Press Enter key to continue... Running update for: - python3.11-pooch-1.6.0: UPDATING ... - python3.11-pooch-1.6.0: DONE. Packages updated! [quotedUrls] [quotedUrls] nothing found to replace Diff after rewrites: diff --git a/pkgs/development/python-modules/pooch/default.nix b/pkgs/development/python-modules/pooch/default.nix index 06c4617c0ce9..4c00d56c9b7d 100644 --- a/pkgs/development/python-modules/pooch/default.nix +++ b/pkgs/development/python-modules/pooch/default.nix @@ -14,13 +14,13 @@ buildPythonPackage rec { pname = "pooch"; - version = "1.6.0"; + version = "1.7.0"; format = "pyproject"; disabled = isPy27; src = fetchPypi { inherit pname version; - hash = "sha256-V9IOxLEN1pTSsFu2S8axCcboWmwUBXlM6H7Ys0GrP0Q="; + hash = "sha256-8XShBBtkR/Du+IYPdtF/YO0vhX3A76OHp/CCKK8F2Zg="; }; nativeBuildInputs = [ setuptools-scm ]; No auto update branch exists Old version 1.6.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.7.0"; format = "pyproject"; disabled = isPy27; src = fetchPypi { inherit pname version; hash = "sha256-8XShBBtkR/Du+IYPdtF/YO0vhX3A76OHp/CCKK8F2Zg="; }; 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 ]; }; }