Commit 1043d247 authored by Thomas Gerbet's avatar Thomas Gerbet
Browse files

vyper: 0.3.10 -> 0.4.0

Fixes CVE-2024-22419, CVE-2024-24559, CVE-2024-24560, CVE-2024-24561, CVE-2024-24563 and CVE-2024-24567.

Release notes:
https://github.com/vyperlang/vyper/releases/tag/v0.4.0
parent 3b14e87c
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -21,7 +21,7 @@ let
  sample-contract = writeText "example.vy" ''
    count: int128

    @external
    @deploy
    def __init__(foo: address):
        self.count = 1
  '';
@@ -29,14 +29,14 @@ let
in
buildPythonPackage rec {
  pname = "vyper";
  version = "0.3.10";
  version = "0.4.0";
  pyproject = true;

  disabled = pythonOlder "3.10";

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-jcH1AcqrQX+wzpxoppRFh/AUfsfMfTiJzzpFwZRm5Ik=";
    hash = "sha256-locUXGoL9C3lLpIgLOmpE2SNPGV6yOXPubNaEA3EfjQ=";
  };

  postPatch = ''