Unverified Commit 4376f02d authored by Theodore Ni's avatar Theodore Ni Committed by GitHub
Browse files

python312Packages.amaranth: unbreak by relaxing upper build system version constraint (#352650)

parents 3e96de0e a36d7378
Loading
Loading
Loading
Loading
+7 −0
Original line number Diff line number Diff line
@@ -31,6 +31,13 @@ buildPythonPackage rec {
    hash = "sha256-lPQw7fAVM7URdyC/9c/UIYsRxVXrLjvHODvhYBdlkkg=";
  };

  postPatch = ''
    substituteInPlace pyproject.toml \
      --replace-fail \
        "pdm-backend~=2.3.0" \
        "pdm-backend>=2.3.0"
  '';

  nativeBuildInputs = [ git ];
  build-system = [ pdm-backend ];