python311Packages.cld2-cffi: drop

This commit is contained in:
Patka 2024-05-20 19:14:52 +02:00
parent 08c97909c2
commit 30bae603d0
No known key found for this signature in database
3 changed files with 1 additions and 28 deletions

View File

@ -1,26 +0,0 @@
{ lib, stdenv, buildPythonPackage, fetchPypi, six, cffi, nose }:
buildPythonPackage rec {
pname = "cld2-cffi";
version = "0.1.4";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "0rvcdx4fdh5yk4d2nlddq1q1r2r0xqp86hpmbdn447pdcj1r8a9s";
};
propagatedBuildInputs = [ six cffi ];
nativeCheckInputs = [ nose ];
# gcc doesn't approve of this code, so disable -Werror
env.NIX_CFLAGS_COMPILE = "-w" + lib.optionalString stdenv.cc.isClang " -Wno-error=c++11-narrowing";
checkPhase = "nosetests -v";
meta = with lib; {
description = "CFFI bindings around Google Chromium's embedded compact language detection library (CLD2)";
homepage = "https://github.com/GregBowyer/cld2-cffi";
license = licenses.asl20;
};
}

View File

@ -85,6 +85,7 @@ mapAliases ({
cchardet = faust-cchardet; # added 2023-03-02
cepa = throw "cepa has been removed, as onionshare switched back to stem"; # added 2024-05-07
class-registry = phx-class-registry; # added 2021-10-05
cld2-cffi = throw "cld2-cffi has been removed, as the last release was in 2016"; # added 2024-05-20
cntk = throw "cntk has been removed from nixpkgs, as it was broken and unmaintained"; # Added 2023-10-09
codespell = throw "codespell has been promoted to a top-level attribute name: `pkgs.codespell`"; # Added 2022-10-02
ColanderAlchemy = colanderalchemy; # added 2023-02-19

View File

@ -2188,8 +2188,6 @@ self: super: with self; {
classify-imports = callPackage ../development/python-modules/classify-imports { };
cld2-cffi = callPackage ../development/python-modules/cld2-cffi { };
cle = callPackage ../development/python-modules/cle { };
clean-fid = callPackage ../development/python-modules/clean-fid { };