Unverified Commit 157d7c38 authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

python312Packages.restrictedpython: 7.3 -> 7.4 (#347570)

parents 7784490a 9b49da62
Loading
Loading
Loading
Loading
+3 −4
Original line number Diff line number Diff line
@@ -11,15 +11,14 @@

buildPythonPackage rec {
  pname = "restrictedpython";
  version = "7.3";
  version = "7.4";
  pyproject = true;

  disabled = pythonOlder "3.7";

  src = fetchPypi {
    pname = "RestrictedPython";
    inherit version;
    hash = "sha256-iIgwTHhY/c/YbFC1hWF5c3W6QDGdK2/7XSSwi2otzWE=";
    inherit pname version;
    hash = "sha256-gbYpJHE9vSgJF/zq7K8hD+96Sd3fGgjIwhSjYT++tCU=";
  };

  build-system = [ setuptools ];