067314d87f
Django 3.1 has reached the end of extended support and all vulnerabilities listed on [1] as affecting Django 3.2 should be assumed to also affect Django 3.1. [1]: https://www.djangoproject.com/weblog/2022/apr/11/security-releases/
60 lines
1.3 KiB
Nix
60 lines
1.3 KiB
Nix
{ lib
|
|
, python3
|
|
}:
|
|
|
|
let
|
|
python = python3.override {
|
|
packageOverrides = self: super: {
|
|
django = super.django_3.overridePythonAttrs (old: rec {
|
|
version = "3.1.14";
|
|
src = old.src.override {
|
|
inherit version;
|
|
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"
|
|
];
|
|
};
|
|
});
|
|
};
|
|
};
|
|
in
|
|
|
|
python.pkgs.buildPythonApplication rec {
|
|
pname = "archivebox";
|
|
version = "0.6.2";
|
|
|
|
src = python.pkgs.fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "sha256-zHty7lTra6yab9d0q3EqsPG3F+lrnZL6PjQAbL1A2NY=";
|
|
};
|
|
|
|
propagatedBuildInputs = with python.pkgs; [
|
|
requests
|
|
mypy-extensions
|
|
django
|
|
django-extensions
|
|
dateparser
|
|
youtube-dl
|
|
python-crontab
|
|
croniter
|
|
w3lib
|
|
ipython
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Open source self-hosted web archiving";
|
|
homepage = "https://archivebox.io";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ siraben ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|