Commit 98152f67 authored by Robert Schütz's avatar Robert Schütz
Browse files

mailman-hyperkitty: pin mistune at 2.0.5

parent 42601e6f
Loading
Loading
Loading
Loading
+11 −1
Original line number Diff line number Diff line
{ python3, lib, overlay ? (_: _: {}) }:
{ python3, fetchPypi, lib, overlay ? (_: _: {}) }:

python3.override {
  packageOverrides = lib.composeExtensions
@@ -19,6 +19,16 @@ python3.override {
        [2] f931bc81d63f5cfda55ac73d754c87b3fd63b291
      */
      django = super.django_3;

      # https://gitlab.com/mailman/hyperkitty/-/merge_requests/541
      mistune = super.mistune.overridePythonAttrs (old: rec {
        version = "2.0.5";
        src = fetchPypi {
          inherit (old) pname;
          inherit version;
          hash = "sha256-AkYRPLJJLbh1xr5Wl0p8iTMzvybNkokchfYxUc7gnTQ=";
        };
      });
    })

    overlay;