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