Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / ltpycld2 / default.nix
blobb8e19ae4999044f53bf58ad4602bab73a4c13bd3
1 { stdenv
2 , lib
3 , buildPythonPackage
4 , fetchPypi
5 }:
7 buildPythonPackage rec {
8   pname = "ltpycld2";
9   version = "0.42";
11   format = "setuptools";
13   src = fetchPypi {
14     pname = "LTpycld2";
15     inherit version;
16     sha256 = "948d0c1ab5518ab4efcbcc3cd73bb29f809f1dfb30f4d2fbd81b175a1ffeb516";
17   };
19   doCheck = false; # completely broken tests
21   pythonImportsCheck = [ "pycld2" ];
23   meta = with lib; {
24     description = "Python bindings around Google Chromium's embedded compact language detection library (CLD2)";
25     homepage = "https://github.com/LibreTranslate/pycld2";
26     license = licenses.asl20;
27     maintainers = with maintainers; [ misuzu ];
28     broken = stdenv.isDarwin;
29   };