diff --git a/pkgs/development/python-modules/fasttext-predict/default.nix b/pkgs/development/python-modules/fasttext-predict/default.nix deleted file mode 100644 index db8a1477168a..000000000000 --- a/pkgs/development/python-modules/fasttext-predict/default.nix +++ /dev/null @@ -1,38 +0,0 @@ -{ - lib, - stdenv, - buildPythonPackage, - fetchPypi, - pybind11, -}: - -buildPythonPackage rec { - pname = "fasttext-predict"; - version = "0.9.2.4"; - format = "setuptools"; - - src = fetchPypi { - pname = "fasttext_predict"; - inherit version; - hash = "sha256-GKb7DXTH35KA2x+Wy3XZkL/QBPqdZpST6j3T1U+E28c="; - }; - - postPatch = lib.optionalString stdenv.hostPlatform.isDarwin '' - substituteInPlace setup.py \ - --replace-fail "-flto" "" - ''; - - nativeBuildInputs = [ pybind11 ]; - - # tests are removed from fork - doCheck = false; - - pythonImportsCheck = [ "fasttext" ]; - - meta = { - description = "fasttext with wheels and no external dependency, but only the predict method (<1MB)"; - homepage = "https://github.com/searxng/fasttext-predict/"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ SuperSandro2000 ]; - }; -} diff --git a/pkgs/top-level/python-aliases.nix b/pkgs/top-level/python-aliases.nix index e002522ff19a..75510d4fe0ad 100644 --- a/pkgs/top-level/python-aliases.nix +++ b/pkgs/top-level/python-aliases.nix @@ -192,6 +192,7 @@ mapAliases { face_recognition_models = throw "'face_recognition_models' has been renamed to/replaced by 'face-recognition-models'"; # Converted to throw 2025-10-29 factory_boy = throw "'factory_boy' has been renamed to/replaced by 'factory-boy'"; # Converted to throw 2025-10-29 fastnlo_toolkit = throw "'fastnlo_toolkit' has been renamed to/replaced by 'fastnlo-toolkit'"; # Converted to throw 2025-10-29 + fasttext-predict = throw "'fasttext-predict' has been removed as the only consumer searxng removed its usage"; # Added 2026-03-11 fb-re2 = throw "fb-re2 has been removed since it is unmaintained upstream, consider google-re2 instead"; # added 2025-10-18 fenics = throw "fenics has been removed, use fenics-dolfinx instead"; # added 2025-08-07 filebrowser_safe = throw "'filebrowser_safe' has been renamed to/replaced by 'filebrowser-safe'"; # Converted to throw 2025-10-29 diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index eff1c6141994..581978f9fd48 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -5414,8 +5414,6 @@ self: super: with self; { fasttext = callPackage ../development/python-modules/fasttext { }; - fasttext-predict = callPackage ../development/python-modules/fasttext-predict { }; - fastuuid = callPackage ../development/python-modules/fastuuid { }; fatrop = toPythonModule (