authentik: more tweaks for mistune 0.8.4
This commit is contained in:
parent
4d0091c35e
commit
847174f08e
2 changed files with 8 additions and 1 deletions
|
@ -26,6 +26,14 @@ let
|
||||||
nativeBuildInputs = (old.nativeBuildInputs or []) ++ [ self.pkgconfig pkgs.pkg-config ];
|
nativeBuildInputs = (old.nativeBuildInputs or []) ++ [ self.pkgconfig pkgs.pkg-config ];
|
||||||
buildInputs = (old.buildInputs or []) ++ [ pkgs.xmlsec pkgs.libxslt pkgs.libxml2 pkgs.libtool ];
|
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 {
|
hatch-vcs = (super.hatch-vcs or (self.buildPythonPackage rec {
|
||||||
pname = "hatch-vcs";
|
pname = "hatch-vcs";
|
||||||
version = "0.2.0";
|
version = "0.2.0";
|
||||||
|
|
1
third_party/default.nix
vendored
1
third_party/default.nix
vendored
|
@ -7,7 +7,6 @@ let
|
||||||
nixpkgsConfig = {
|
nixpkgsConfig = {
|
||||||
allowUnfree = true;
|
allowUnfree = true;
|
||||||
permittedInsecurePackages = [
|
permittedInsecurePackages = [
|
||||||
"python3.10-mistune-0.8.4"
|
|
||||||
"p7zip-16.02"
|
"p7zip-16.02"
|
||||||
];
|
];
|
||||||
packageOverrides = pkgs: {
|
packageOverrides = pkgs: {
|
||||||
|
|
Loading…
Reference in a new issue