python312Packages.setuptools 69.0.3 -> 69.2.0 https://github.com/pypa/setuptools/releases attrpath: python312Packages.setuptools 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/kqaymf5hsxvh11w790ryhphh2818pnr4-packages.json.drv building '/nix/store/kqaymf5hsxvh11w790ryhphh2818pnr4-packages.json.drv'... Going to be running update for following packages: - python3.12-setuptools-69.0.3 Press Enter key to continue... Running update for: - python3.12-setuptools-69.0.3: UPDATING ... - python3.12-setuptools-69.0.3: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/python-modules/setuptools/default.nix b/pkgs/development/python-modules/setuptools/default.nix index 7cacc0ca5a4d..46a2597ed141 100644 --- a/pkgs/development/python-modules/setuptools/default.nix +++ b/pkgs/development/python-modules/setuptools/default.nix @@ -8,14 +8,14 @@ buildPythonPackage rec { pname = "setuptools"; - version = "69.0.3"; + version = "69.2.0"; format = "pyproject"; src = fetchFromGitHub { owner = "pypa"; repo = "setuptools"; rev = "refs/tags/v${version}"; - hash = "sha256-38csULki+SBcg7StScj0/09A+JZesm8iwOBjSgXyXMA="; + hash = "sha256-kll4zYFQn4g/8Fq0Y5vLvDXtotxYMbiNAgGa0sClFQk="; }; patches = [ No auto update branch exists Old version 69.0.3" not present in staging derivation file with contents: { stdenv , lib , buildPythonPackage , fetchFromGitHub , python , wheel }: buildPythonPackage rec { pname = "setuptools"; version = "69.1.1"; format = "pyproject"; src = fetchFromGitHub { owner = "pypa"; repo = "setuptools"; rev = "refs/tags/v${version}"; hash = "sha256-TWW8kW7ZjRsl5Y0CEVHqhIVJsiRixSSYe/ctSO1c/78="; }; patches = [ ./tag-date.patch ./setuptools-distutils-C++.patch ]; nativeBuildInputs = [ wheel ]; preBuild = lib.optionalString (!stdenv.hostPlatform.isWindows) '' export SETUPTOOLS_INSTALL_WINDOWS_SPECIFIC_FILES=0 ''; # Requires pytest, causing infinite recursion. doCheck = false; meta = with lib; { description = "Utilities to facilitate the installation of Python packages"; homepage = "https://github.com/pypa/setuptools"; changelog = "https://setuptools.pypa.io/en/stable/history.html#v${replaceStrings [ "." ] [ "-" ] version}"; license = with licenses; [ mit ]; platforms = python.meta.platforms; maintainers = teams.python.members; }; }