authentik: more tweaks for mistune 0.8.4

This commit is contained in:
Luke Granger-Brown 2022-08-26 21:46:56 +01:00
parent 4d0091c35e
commit 847174f08e
2 changed files with 8 additions and 1 deletions

View file

@ -26,6 +26,14 @@ let
nativeBuildInputs = (old.nativeBuildInputs or []) ++ [ self.pkgconfig pkgs.pkg-config ];
buildInputs = (old.buildInputs or []) ++ [ pkgs.xmlsec pkgs.libxslt pkgs.libxml2 pkgs.libtool ];
});
mistune = super.mistune.overridePythonAttrs (old: rec {
version = "0.8.4";
src = self.fetchPypi {
inherit (old) pname;
inherit version;
sha256 = "59a3429db53c50b5c6bcc8a07f8848cb00d7dc8bdb431a4ab41920d201d4756e";
};
});
hatch-vcs = (super.hatch-vcs or (self.buildPythonPackage rec {
pname = "hatch-vcs";
version = "0.2.0";

View file

@ -7,7 +7,6 @@ let
nixpkgsConfig = {
allowUnfree = true;
permittedInsecurePackages = [
"python3.10-mistune-0.8.4"
"p7zip-16.02"
];
packageOverrides = pkgs: {