python3Packages.fasttext-predict: remove
This commit is contained in:
@@ -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 ];
|
||||
};
|
||||
}
|
||||
@@ -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
|
||||
|
||||
@@ -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 (
|
||||
|
||||
Reference in New Issue
Block a user