python310Packages.cx-freeze 6.14.4 -> 6.15.9 https://repology.org/project/python:cx-freeze/versions attrpath: python310Packages.cx-freeze 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/rp4y66z7pwqrip12cfp1f8cw3pkpbf3m-packages.json.drv building '/nix/store/rp4y66z7pwqrip12cfp1f8cw3pkpbf3m-packages.json.drv'... Going to be running update for following packages: - python3.10-cx-freeze-6.14.4 Press Enter key to continue... Running update for: - python3.10-cx-freeze-6.14.4: UPDATING ... - python3.10-cx-freeze-6.14.4: DONE. Packages updated! [quotedUrls] [quotedUrls] nothing found to replace Diff after rewrites: diff --git a/pkgs/development/python-modules/cx-freeze/default.nix b/pkgs/development/python-modules/cx-freeze/default.nix index b30fa8e5659f..34b39bb1b379 100644 --- a/pkgs/development/python-modules/cx-freeze/default.nix +++ b/pkgs/development/python-modules/cx-freeze/default.nix @@ -11,7 +11,7 @@ buildPythonPackage rec { pname = "cx-freeze"; - version = "6.14.4"; + version = "6.15.9"; format = "pyproject"; disabled = pythonOlder "3.5"; @@ -19,7 +19,7 @@ buildPythonPackage rec { src = fetchPypi { pname = "cx_Freeze"; inherit version; - hash = "sha256-ydox+o4B0t/dYD+nDiY5CmWupt1iMzyU2fA4tCqgVcg="; + hash = "sha256-r/wu4B0IJXIcGH/7jlMGAqzdGTyfDsdDUf2EsNHHbKc="; }; nativeBuildInputs = [ No auto update branch exists Old version 6.14.4" not present in staging derivation file with contents: { lib , buildPythonPackage , fetchPypi , pythonOlder , ncurses , importlib-metadata , setuptools , wheel , patchelf }: buildPythonPackage rec { pname = "cx-freeze"; version = "6.15.7"; format = "pyproject"; disabled = pythonOlder "3.5"; src = fetchPypi { pname = "cx_Freeze"; inherit version; hash = "sha256-+X9FWkpG7gwHbZIqKftT7/RioWXdBCP6J+J8KkRTtAs="; }; nativeBuildInputs = [ setuptools wheel ]; propagatedBuildInputs = [ importlib-metadata # upstream has this for 3.8 as well ncurses setuptools ]; postPatch = '' # timestamp need to come after 1980 for zipfiles and nix store is set to epoch substituteInPlace cx_Freeze/freezer.py --replace "st.st_mtime" "time.time()" sed -i /patchelf/d pyproject.toml substituteInPlace pyproject.toml \ --replace 'setuptools>=61.2,<67' setuptools ''; makeWrapperArgs = [ "--prefix" "PATH" ":" (lib.makeBinPath [ patchelf ]) ]; # fails to find Console even though it exists on python 3.x doCheck = false; meta = with lib; { description = "A set of scripts and modules for freezing Python scripts into executables"; homepage = "https://marcelotduarte.github.io/cx_Freeze/"; license = licenses.psfl; maintainers = with maintainers; [ ]; mainProgram = "cxfreeze"; }; }