archivebox: init at 0.6.2

This commit is contained in:
Ben Siraphob 2021-08-11 14:55:36 +07:00
parent 0ac49d7c7b
commit e5fd43a155
2 changed files with 52 additions and 0 deletions

View File

@ -0,0 +1,50 @@
{ lib
, buildPythonApplication
, fetchPypi
, requests
, mypy-extensions
, django_3
, django_extensions
, dateparser
, youtube-dl
, python-crontab
, croniter
, w3lib
, ipython
}:
buildPythonApplication rec {
pname = "archivebox";
version = "0.6.2";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-zHty7lTra6yab9d0q3EqsPG3F+lrnZL6PjQAbL1A2NY=";
};
# Relax some dependencies
postPatch = ''
substituteInPlace setup.py --replace '"django>=3.1.3,<3.2"' '"django>=3.1.3"'
'';
propagatedBuildInputs = [
requests
mypy-extensions
django_3
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;
};
}

View File

@ -1124,6 +1124,8 @@ with pkgs;
ArchiSteamFarm = callPackage ../applications/misc/ArchiSteamFarm { };
archivebox = python3Packages.callPackage ../applications/misc/archivebox { };
archivemount = callPackage ../tools/filesystems/archivemount { };
archivy = python3Packages.callPackage ../applications/misc/archivy { };