lektor: pin mistune at 2.0.5

This commit is contained in:
Robert Schütz 2023-09-12 22:23:43 -07:00
parent 98152f67b9
commit 19657c7fd6

View file

@ -1,13 +1,25 @@
{ lib { lib
, fetchFromGitHub , fetchFromGitHub
, fetchNpmDeps , fetchNpmDeps
, fetchPypi
, nodejs , nodejs
, npmHooks , npmHooks
, python3 , python3
}: }:
let let
python = python3; python = python3.override {
packageOverrides = self: super: {
mistune = super.mistune.overridePythonAttrs (old: rec {
version = "2.0.5";
src = fetchPypi {
inherit (old) pname;
inherit version;
hash = "sha256-AkYRPLJJLbh1xr5Wl0p8iTMzvybNkokchfYxUc7gnTQ=";
};
});
};
};
in python.pkgs.buildPythonApplication rec { in python.pkgs.buildPythonApplication rec {
pname = "lektor"; pname = "lektor";
version = "3.4.0b8"; version = "3.4.0b8";