grab-site: remove

grab-site has been removed because it's unmaintained and broken
This commit is contained in:
natsukium 2023-11-12 16:57:17 +09:00
parent 782e4f664d
commit 656ad4af93
No known key found for this signature in database
GPG Key ID: 9EA45A31DB994C53
3 changed files with 1 additions and 61 deletions

View File

@ -1,59 +0,0 @@
{ lib, python38, fetchPypi, fetchFromGitHub }:
let
python = python38.override {
self = python;
packageOverrides = self: super: {
sqlalchemy = super.sqlalchemy.overridePythonAttrs (oldAttrs: rec {
version = "1.3.24";
src = fetchPypi {
inherit (oldAttrs) pname;
inherit version;
hash = "sha256-67t3fL+TEjWbiXv4G6ANrg9ctp+6KhgmXcwYpvXvdRk=";
};
doCheck = false;
});
tornado = super.tornado_4;
};
};
in
with python.pkgs; buildPythonApplication rec {
pname = "grab-site";
version = "2.2.7";
src = fetchFromGitHub {
rev = version;
owner = "ArchiveTeam";
repo = "grab-site";
sha256 = "sha256-tf8GyFjya3+TVc2VjlY6ztfjCJgof6tg4an18pz+Ig8=";
};
postPatch = ''
substituteInPlace setup.py \
--replace '"wpull @ https://github.com/ArchiveTeam/ludios_wpull/tarball/master#egg=wpull-${ludios_wpull.version}"' '"wpull"'
'';
propagatedBuildInputs = [
click
ludios_wpull
manhole
lmdb
autobahn
fb-re2
websockets
faust-cchardet
];
checkPhase = ''
export PATH=$PATH:$out/bin
bash ./tests/offline-tests
'';
meta = with lib; {
description = "Crawler for web archiving with WARC output";
homepage = "https://github.com/ArchiveTeam/grab-site";
license = licenses.mit;
maintainers = with maintainers; [ ivan ];
platforms = platforms.all;
};
}

View File

@ -334,6 +334,7 @@ mapAliases ({
graalvm11-ce = throw "graalvm11-ce has been removed because upstream dropped support to different JDK versions for each GraalVM release. Please use graalvm-ce instead"; # Added 2023-09-26
graalvm17-ce = throw "graalvm17-ce has been removed because upstream dropped support to different JDK versions for each GraalVM release. Please use graalvm-ce instead"; # Added 2023-09-26
graalvm19-ce = throw "graalvm19-ce has been removed because upstream dropped support to different JDK versions for each GraalVM release. Please use graalvm-ce instead"; # Added 2023-09-26
grab-site = throw "grab-site has been removed because it's unmaintained and broken"; # Added 2023-11-12
gradle_4 = throw "gradle_4 has been removed because it's no longer being updated"; # Added 2023-01-17
gradle_5 = throw "gradle_5 has been removed because it's no longer being updated"; # Added 2023-01-17
gr-ais = throw "'gr-ais' has been renamed to/replaced by 'gnuradio3_7.pkgs.ais'"; # Converted to throw 2023-09-10

View File

@ -21751,8 +21751,6 @@ with pkgs;
gperftools = callPackage ../development/libraries/gperftools { };
grab-site = callPackage ../tools/backup/grab-site { };
grilo = callPackage ../development/libraries/grilo { };
grilo-plugins = callPackage ../development/libraries/grilo-plugins { };