python310Packages.wheel 0 -> 1 attrpath: python310Packages.wheel 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/r0m4mllbzy635hhb4zgzmb01w3gx262n-packages.json.drv building '/nix/store/r0m4mllbzy635hhb4zgzmb01w3gx262n-packages.json.drv'... Going to be running update for following packages: - python3.10-wheel-0.41.1 Press Enter key to continue... Running update for: - python3.10-wheel-0.41.1: UPDATING ... - python3.10-wheel-0.41.1: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/python-modules/wheel/default.nix b/pkgs/development/python-modules/wheel/default.nix index 16c6c2dc087d..14b357ab9e36 100644 --- a/pkgs/development/python-modules/wheel/default.nix +++ b/pkgs/development/python-modules/wheel/default.nix @@ -6,14 +6,14 @@ buildPythonPackage rec { pname = "wheel"; - version = "0.41.1"; + version = "0.42.0"; format = "pyproject"; src = fetchFromGitHub { owner = "pypa"; repo = pname; - rev = version; - hash = "sha256-/EaDJ2zI/ly2BrrGhiZGwiBYDVPYWTki+87UqtCS3bw="; + rev = "refs/tags/${version}"; + hash = "sha256-I9m6tI0W09h4MkUEdMh9wGKk/P6nzGt/hSEOzCBYAwY="; postFetch = '' cd $out mv tests/testdata/unicode.dist/unicodedist/åäö_日本語.py \ No auto update branch exists Old version 0.41.1" not present in staging derivation file with contents: { lib , buildPythonPackage , fetchFromGitHub , flit-core }: buildPythonPackage rec { pname = "wheel"; version = "0.42.0"; format = "pyproject"; src = fetchFromGitHub { owner = "pypa"; repo = pname; rev = "refs/tags/${version}"; hash = "sha256-WML3/gAK1R9DEeRVZWeO0VRFuNVKP52i5I5mYV6vQcI="; postFetch = '' cd $out mv tests/testdata/unicode.dist/unicodedist/åäö_日本語.py \ tests/testdata/unicode.dist/unicodedist/æɐø_日本價.py patch -p1 < ${./0001-tests-Rename-a-a-o-_-.py-_-.py.patch} ''; }; nativeBuildInputs = [ flit-core ]; # No tests in archive doCheck = false; pythonImportsCheck = [ "wheel" ]; meta = with lib; { homepage = "https://github.com/pypa/wheel"; description = "A built-package format for Python"; longDescription = '' This library is the reference implementation of the Python wheel packaging standard, as defined in PEP 427. It has two different roles: - A setuptools extension for building wheels that provides the bdist_wheel setuptools command - A command line tool for working with wheel files It should be noted that wheel is not intended to be used as a library, and as such there is no stable, public API. ''; license = with licenses; [ mit ]; maintainers = with maintainers; [ siriobalmelli ]; }; }