python312Packages.tqdm 4.66.1 -> 4.66.2 https://github.com/tqdm/tqdm/releases attrpath: python312Packages.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] this derivation will be built: /nix/store/0731l23bpsx7yzzc52vzgd4j5dkavm80-packages.json.drv building '/nix/store/0731l23bpsx7yzzc52vzgd4j5dkavm80-packages.json.drv'... Going to be running update for following packages: - python3.12-tqdm-4.66.1 Press Enter key to continue... Running update for: - python3.12-tqdm-4.66.1: UPDATING ... - python3.12-tqdm-4.66.1: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/python-modules/tqdm/default.nix b/pkgs/development/python-modules/tqdm/default.nix index 2cd490e844e5..b3f8282df4bd 100644 --- a/pkgs/development/python-modules/tqdm/default.nix +++ b/pkgs/development/python-modules/tqdm/default.nix @@ -17,12 +17,12 @@ buildPythonPackage rec { pname = "tqdm"; - version = "4.66.1"; + version = "4.66.2"; format = "pyproject"; src = fetchPypi { inherit pname version; - hash = "sha256-2I5lH5242FUaYlVtPP+eMDQnTKXWbpMZfPJJDi3Lacc="; + hash = "sha256-bNUs3w/vDg9UMpnPyW/skNe4p+iHRfQR7DPrRNXtNTE="; }; nativeBuildInputs = [ No auto update branch exists Old version 4.66.1" not present in staging derivation file with contents: { lib , stdenv , buildPythonPackage , fetchPypi , pythonOlder , setuptools , setuptools-scm , wheel , pytestCheckHook , pytest-asyncio , pytest-timeout , numpy , pandas , rich , tkinter }: buildPythonPackage rec { pname = "tqdm"; version = "4.66.2"; format = "pyproject"; src = fetchPypi { inherit pname version; hash = "sha256-bNUs3w/vDg9UMpnPyW/skNe4p+iHRfQR7DPrRNXtNTE="; }; nativeBuildInputs = [ setuptools setuptools-scm wheel ]; # https://github.com/tqdm/tqdm/issues/1537 doCheck = pythonOlder "3.12"; 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" "-W" "ignore::DeprecationWarning" ]; # 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 ]; }; }