From d57beef5b71642be62ec747dece83ac00d483abc Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Wed, 5 Feb 2025 18:52:45 +0100 Subject: [PATCH] python313Packages.restrictedpython: 7.4 -> 8.0 https://github.com/zopefoundation/RestrictedPython/blob/8.0/CHANGES.rst --- .../development/python-modules/restrictedpython/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/python-modules/restrictedpython/default.nix b/pkgs/development/python-modules/restrictedpython/default.nix index 7455eb58eeb3..5cf21f66d6f2 100644 --- a/pkgs/development/python-modules/restrictedpython/default.nix +++ b/pkgs/development/python-modules/restrictedpython/default.nix @@ -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 ];