Commit 646b6a14 authored by Maksym Balatsko's avatar Maksym Balatsko
Browse files

python3Packages.langid: init at 1.1.6

parent 74b1db51
Loading
Loading
Loading
Loading
+37 −0
Original line number Diff line number Diff line
{ lib
, buildPythonPackage
, fetchPypi
, setuptools
, wheel
, numpy
}:

buildPythonPackage rec {
  pname = "langid";
  version = "1.1.6";
  format = "setuptools";

  src = fetchPypi { # use PyPi as source, github repository does not contain tags or release branches
    inherit pname version;
    hash = "sha256-BEvK4ZEtq4XDPY6Y8oEbj0/xIT5emp6VEBN7hNosspM=";
  };

  nativeBuildInputs = [
    setuptools
    wheel
  ];

  propagatedBuildInputs = [
    numpy
  ];

  doCheck = false; # Package has no tests
  pythonImportsCheck = [ "langid" ];

  meta = with lib; {
    description = "Langid.py is a standalone Language Identification (LangID) tool";
    homepage = "https://pypi.org/project/langid/";
    license = licenses.bsd2;
    maintainers = with maintainers; [ mbalatsko ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -5878,6 +5878,8 @@ self: super: with self; {
  langdetect = callPackage ../development/python-modules/langdetect { };
  langid = callPackage ../development/python-modules/langid { };
  langsmith = callPackage ../development/python-modules/langsmith { };
  language-data = callPackage ../development/python-modules/language-data { };