python310Packages.tqdm 0 -> 1 attrpath: python310Packages.tqdm 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] Going to be running update for following packages: - python3.10-tqdm-4.64.1 Press Enter key to continue... Running update for: - python3.10-tqdm-4.64.1: UPDATING ... - python3.10-tqdm-4.64.1: DONE. Packages updated! [quotedUrls] [quotedUrls] nothing found to replace Diff after rewrites: diff --git a/pkgs/development/python-modules/tqdm/default.nix b/pkgs/development/python-modules/tqdm/default.nix index 891771ebc698..2fbad8c0bafa 100644 --- a/pkgs/development/python-modules/tqdm/default.nix +++ b/pkgs/development/python-modules/tqdm/default.nix @@ -14,11 +14,11 @@ buildPythonPackage rec { pname = "tqdm"; - version = "4.64.1"; + version = "4.66.1"; src = fetchPypi { inherit pname version; - hash = "sha256-X09oKgBJUcG0ULx1PHEOkoDFdGzm/+3uJT3by/VM8eQ="; + hash = "sha256-2I5lH5242FUaYlVtPP+eMDQnTKXWbpMZfPJJDi3Lacc="; }; nativeBuildInputs = [ No auto update branch exists Old version 4.64.1" not present in staging derivation file with contents: { lib , stdenv , buildPythonPackage , fetchPypi , setuptools , setuptools-scm , wheel , pytestCheckHook , pytest-asyncio , pytest-timeout , numpy , pandas , rich , tkinter }: buildPythonPackage rec { pname = "tqdm"; version = "4.66.1"; format = "pyproject"; src = fetchPypi { inherit pname version; hash = "sha256-2I5lH5242FUaYlVtPP+eMDQnTKXWbpMZfPJJDi3Lacc="; }; nativeBuildInputs = [ setuptools setuptools-scm wheel ]; nativeCheckInputs = [ pytestCheckHook pytest-asyncio pytest-timeout # tests of optional features numpy rich tkinter ] ++ # pandas is not supported on i686 or risc-v lib.optional (!stdenv.isi686 && !stdenv.hostPlatform.isRiscV) pandas; pytestFlagsArray = [ "-W" "ignore::FutureWarning" ]; # Remove performance testing. # Too sensitive for on Hydra. disabledTests = [ "perf" ]; LC_ALL="en_US.UTF-8"; pythonImportsCheck = [ "tqdm" ]; meta = with lib; { description = "A Fast, Extensible Progress Meter"; homepage = "https://github.com/tqdm/tqdm"; changelog = "https://tqdm.github.io/releases/"; license = with licenses; [ mit ]; maintainers = with maintainers; [ fridh ]; }; }