9 buildPythonPackage rec {
12 format = "setuptools";
14 src = fetchPypi { # use PyPi as source, github repository does not contain tags or release branches
15 inherit pname version;
16 hash = "sha256-BEvK4ZEtq4XDPY6Y8oEbj0/xIT5emp6VEBN7hNosspM=";
24 propagatedBuildInputs = [
28 doCheck = false; # Package has no tests
29 pythonImportsCheck = [ "langid" ];
32 description = "Langid.py is a standalone Language Identification (LangID) tool";
33 mainProgram = "langid";
34 homepage = "https://pypi.org/project/langid/";
35 license = licenses.bsd2;
36 maintainers = with maintainers; [ mbalatsko ];