python313Packages.restrictedpython: 7.4 -> 8.0

https://github.com/zopefoundation/RestrictedPython/blob/8.0/CHANGES.rst
This commit is contained in:
Martin Weinelt
2025-02-06 18:55:21 +01:00
parent 793b4d1906
commit d57beef5b7
@@ -11,19 +11,19 @@
buildPythonPackage rec {
pname = "restrictedpython";
version = "7.4";
version = "8.0";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-gbYpJHE9vSgJF/zq7K8hD+96Sd3fGgjIwhSjYT++tCU=";
hash = "sha256-OvIxK8Z+X87Yh/uFsAbImGHackiBKLFVvuqB62oKmyQ=";
};
postPatch = ''
substituteInPlace pyproject.toml \
--replace-fail "setuptools<74" setuptools
--replace-fail "setuptools <= 75.6.0" setuptools
'';
build-system = [ setuptools ];