Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / langid / default.nix
blob1f1c16777300898a5ebb9e2d875202ca9e993715
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , setuptools
5 , wheel
6 , numpy
7 }:
9 buildPythonPackage rec {
10   pname = "langid";
11   version = "1.1.6";
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=";
17   };
19   nativeBuildInputs = [
20     setuptools
21     wheel
22   ];
24   propagatedBuildInputs = [
25     numpy
26   ];
28   doCheck = false; # Package has no tests
29   pythonImportsCheck = [ "langid" ];
31   meta = with lib; {
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 ];
37   };