forked from mirrors/nixpkgs
Merge #177365: archivebox: mark insecure
This commit is contained in:
commit
88ed166300
|
@ -6,10 +6,21 @@ let
|
|||
python = python3.override {
|
||||
packageOverrides = self: super: {
|
||||
django = super.django_3.overridePythonAttrs (old: rec {
|
||||
version = "3.1.7";
|
||||
version = "3.1.14";
|
||||
src = old.src.override {
|
||||
inherit version;
|
||||
sha256 = "sha256-Ms55Lum2oMu+w0ASPiKayfdl3/jCpK6SR6FLK6OjZac=";
|
||||
sha256 = "72a4a5a136a214c39cf016ccdd6b69e2aa08c7479c66d93f3a9b5e4bb9d8a347";
|
||||
};
|
||||
meta = old.meta // {
|
||||
knownVulnerabilities = [
|
||||
"CVE-2021-45115"
|
||||
"CVE-2021-45116"
|
||||
"CVE-2021-45452"
|
||||
"CVE-2022-23833"
|
||||
"CVE-2022-22818"
|
||||
"CVE-2022-28347"
|
||||
"CVE-2022-28346"
|
||||
];
|
||||
};
|
||||
});
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue