10 buildPythonPackage rec {
13 format = "setuptools";
16 # use PyPi as source, github repository does not contain tags or release branches
17 inherit pname version;
18 hash = "sha256-BEvK4ZEtq4XDPY6Y8oEbj0/xIT5emp6VEBN7hNosspM=";
26 propagatedBuildInputs = [ numpy ];
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 ];