biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / ltpycld2 / default.nix
blob510259d72d6e732ba55b2dd27c6fd85635813e8c
2   stdenv,
3   lib,
4   buildPythonPackage,
5   fetchPypi,
6 }:
8 buildPythonPackage rec {
9   pname = "ltpycld2";
10   version = "0.42";
12   format = "setuptools";
14   src = fetchPypi {
15     pname = "LTpycld2";
16     inherit version;
17     sha256 = "948d0c1ab5518ab4efcbcc3cd73bb29f809f1dfb30f4d2fbd81b175a1ffeb516";
18   };
20   doCheck = false; # completely broken tests
22   pythonImportsCheck = [ "pycld2" ];
24   meta = with lib; {
25     description = "Python bindings around Google Chromium's embedded compact language detection library (CLD2)";
26     homepage = "https://github.com/LibreTranslate/pycld2";
27     license = licenses.asl20;
28     maintainers = with maintainers; [ misuzu ];
29     broken = stdenv.hostPlatform.isDarwin;
30   };