python312Packages.dash-renderer: remove (#369714)
[NixPkgs.git] / pkgs / development / python-modules / langdetect / default.nix
blob5db13ad9c4db7b09d985ff9bb1c7b5ef835ab4ec
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   pytestCheckHook,
6   six,
7 }:
9 buildPythonPackage rec {
10   pname = "langdetect";
11   version = "1.0.9";
12   format = "setuptools";
14   src = fetchPypi {
15     inherit pname version;
16     sha256 = "1805svvb7xjm4sf1j7b6nc3409x37pd1xmabfwwjf1ldkzwgxhfb";
17   };
19   propagatedBuildInputs = [ six ];
21   nativeCheckInputs = [ pytestCheckHook ];
23   pythonImportsCheck = [ "langdetect" ];
25   meta = with lib; {
26     description = "Python port of Google's language-detection library";
27     homepage = "https://github.com/Mimino666/langdetect";
28     license = licenses.asl20;
29     maintainers = with maintainers; [ erikarvstedt ];
30   };