python311Packages.restrictedpython: 6.2 -> 7.0

Changelog: https://github.com/zopefoundation/RestrictedPython/blob/7.0/CHANGES.rst

Fixes: CVE-2023-37271, CVE-2023-41039
This commit is contained in:
Fabian Affolter
2023-12-09 17:49:36 +01:00
committed by Martin Weinelt
parent 1c9eab8fe1
commit 8780a38bcf
@@ -5,21 +5,26 @@
, pytestCheckHook
, pythonAtLeast
, pythonOlder
, setuptools
}:
buildPythonPackage rec {
pname = "restrictedpython";
version = "6.2";
format = "setuptools";
version = "7.0";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchPypi {
pname = "RestrictedPython";
inherit version;
hash = "sha256-23Prfjs5ZQ8NIdEMyN2pwOKYbmIclLDF3jL7De46CK8=";
hash = "sha256-U3BK+7w1D9yPskVEE2e+Zxyfg4CGkgGy6EUudPzj2xQ=";
};
nativeBuildInputs = [
setuptools
];
nativeCheckInputs = [
pytestCheckHook
pytest-mock