From 80d63dc5743a047cf3c07a725bce92bba55f5118 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Fri, 10 Jul 2026 13:26:58 -0700 Subject: [PATCH] python3Packages.restrictedpython: 8.1 -> 8.4 Diff: https://github.com/zopefoundation/RestrictedPython/compare/8.1...8.4 Changelog: https://github.com/zopefoundation/RestrictedPython/blob/8.4/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 043c8047a3dc..9ca7e05e56c0 100644 --- a/pkgs/development/python-modules/restrictedpython/default.nix +++ b/pkgs/development/python-modules/restrictedpython/default.nix @@ -9,19 +9,19 @@ buildPythonPackage rec { pname = "restrictedpython"; - version = "8.1"; + version = "8.4"; pyproject = true; src = fetchFromGitHub { owner = "zopefoundation"; repo = "RestrictedPython"; tag = version; - hash = "sha256-UcmH1I2p+XmQm4Y5M+Ms/LMSchor6GD6V9dxippa4HI="; + hash = "sha256-Ck5YDtjYs7rZk+MC+eKrQVCQX1EYlxC6m4kD5+QjfjE="; }; postPatch = '' substituteInPlace pyproject.toml \ - --replace-fail "setuptools >= 78.1.1,< 81" setuptools + --replace-fail "setuptools >= 78.1.1,< 82" setuptools ''; build-system = [ setuptools ];