lol

python313Packages.restrictedpython: 7.4 -> 8.0

https://github.com/zopefoundation/RestrictedPython/blob/8.0/CHANGES.rst

+3 -3
+3 -3
pkgs/development/python-modules/restrictedpython/default.nix
··· 11 11 12 12 buildPythonPackage rec { 13 13 pname = "restrictedpython"; 14 - version = "7.4"; 14 + version = "8.0"; 15 15 pyproject = true; 16 16 17 17 disabled = pythonOlder "3.7"; 18 18 19 19 src = fetchPypi { 20 20 inherit pname version; 21 - hash = "sha256-gbYpJHE9vSgJF/zq7K8hD+96Sd3fGgjIwhSjYT++tCU="; 21 + hash = "sha256-OvIxK8Z+X87Yh/uFsAbImGHackiBKLFVvuqB62oKmyQ="; 22 22 }; 23 23 24 24 postPatch = '' 25 25 substituteInPlace pyproject.toml \ 26 - --replace-fail "setuptools<74" setuptools 26 + --replace-fail "setuptools <= 75.6.0" setuptools 27 27 ''; 28 28 29 29 build-system = [ setuptools ];