nixpkgs/pkgs/tools/backup/grab-site/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

59 lines
1.4 KiB
Nix
Raw Normal View History

{ lib, python38, fetchFromGitHub }:
let
python = python38.override {
self = python;
packageOverrides = self: super: {
sqlalchemy = super.sqlalchemy.overridePythonAttrs (oldAttrs: rec {
version = "1.3.24";
src = oldAttrs.src.override {
inherit version;
2022-04-13 21:30:51 +02:00
hash = "sha256-67t3fL+TEjWbiXv4G6ANrg9ctp+6KhgmXcwYpvXvdRk=";
};
2022-04-13 21:30:51 +02:00
doCheck = false;
});
tornado = super.tornado_4;
};
};
2021-01-04 14:59:03 +01:00
in
with python.pkgs; buildPythonApplication rec {
pname = "grab-site";
version = "2.2.2";
2018-12-14 03:20:17 +01:00
src = fetchFromGitHub {
2019-09-09 01:38:31 +02:00
rev = version;
2019-04-29 05:08:53 +02:00
owner = "ArchiveTeam";
2018-12-14 03:20:17 +01:00
repo = "grab-site";
sha256 = "0af53g703kqpxa6bn72mb2l5l0qrjknq5wqwl4wryyscdp4xabx4";
2018-12-14 03:20:17 +01:00
};
2021-01-04 14:59:03 +01:00
postPatch = ''
substituteInPlace setup.py \
--replace '"wpull @ https://github.com/ArchiveTeam/ludios_wpull/tarball/master#egg=wpull-${ludios_wpull.version}"' '"wpull"'
2021-01-04 14:59:03 +01:00
'';
propagatedBuildInputs = [
2021-01-04 14:59:03 +01:00
click
ludios_wpull
manhole
lmdb
autobahn
fb-re2
websockets
cchardet
2018-12-14 03:20:17 +01:00
];
checkPhase = ''
export PATH=$PATH:$out/bin
bash ./tests/offline-tests
'';
meta = with lib; {
2018-12-14 03:20:17 +01:00
description = "Crawler for web archiving with WARC output";
homepage = "https://github.com/ArchiveTeam/grab-site";
2018-12-14 03:20:17 +01:00
license = licenses.mit;
maintainers = with maintainers; [ ivan ];
platforms = platforms.all;
};
}