about summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorOTABI Tomoya <tomoya.otabi@gmail.com>2023-11-13 11:57:59 +0900
committerGitHub <noreply@github.com>2023-11-13 11:57:59 +0900
commit5d50cc4fd51502cfec4c349d91b02600dfcc7654 (patch)
treef9a29ee9c597e20a6de6c98fbcb69a7b13673655 /pkgs/development
parentc78186e36251ddbae7799c9c5307d3c8cc2de1ac (diff)
parent9e0c31d76a9a4cdfbd9a3b778a1f3a38f2d68b1e (diff)
downloadnixlib-5d50cc4fd51502cfec4c349d91b02600dfcc7654.tar
nixlib-5d50cc4fd51502cfec4c349d91b02600dfcc7654.tar.gz
nixlib-5d50cc4fd51502cfec4c349d91b02600dfcc7654.tar.bz2
nixlib-5d50cc4fd51502cfec4c349d91b02600dfcc7654.tar.lz
nixlib-5d50cc4fd51502cfec4c349d91b02600dfcc7654.tar.xz
nixlib-5d50cc4fd51502cfec4c349d91b02600dfcc7654.tar.zst
nixlib-5d50cc4fd51502cfec4c349d91b02600dfcc7654.zip
Merge pull request #267001 from natsukium/ludios-wpull
{grab-site,python38Packages.ludios_wpull}: remove
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/python-modules/ludios_wpull/default.nix41
1 files changed, 0 insertions, 41 deletions
diff --git a/pkgs/development/python-modules/ludios_wpull/default.nix b/pkgs/development/python-modules/ludios_wpull/default.nix
deleted file mode 100644
index eae9f78b26ae..000000000000
--- a/pkgs/development/python-modules/ludios_wpull/default.nix
+++ /dev/null
@@ -1,41 +0,0 @@
-{ lib
-, buildPythonPackage
-, fetchFromGitHub
-, chardet
-, dnspython
-, html5-parser
-, lxml
-, namedlist
-, sqlalchemy
-, tornado
-, yapsy
-, pythonAtLeast
-}:
-
-buildPythonPackage rec {
-  pname = "ludios_wpull";
-  version = "3.0.9";
-
-  # https://github.com/ArchiveTeam/ludios_wpull/issues/20
-  disabled = pythonAtLeast "3.9";
-
-  src = fetchFromGitHub {
-    rev = version;
-    owner = "ArchiveTeam";
-    repo = "ludios_wpull";
-    sha256 = "0j4dir0dgg8pkf4d1znicz6wyyi1wzij50r21z838cycsdr54j4c";
-  };
-
-  propagatedBuildInputs = [ chardet dnspython html5-parser lxml namedlist sqlalchemy tornado yapsy ];
-
-  # Test suite has tests that fail on all platforms
-  doCheck = false;
-
-  meta = {
-    description = "Web crawler; fork of wpull used by grab-site";
-    homepage = "https://github.com/ArchiveTeam/ludios_wpull";
-    license = lib.licenses.gpl3;
-    maintainers = with lib.maintainers; [ ivan ];
-    broken = lib.versions.major tornado.version != "4";
-  };
-}