python3Packages.langdetect: 1.0.7 -> 1.0.9

This commit is contained in:
Fabian Affolter 2021-07-12 09:24:17 +02:00
parent dbdde6249f
commit 7bea8f1762

View file

@ -1,16 +1,28 @@
{ lib, buildPythonPackage, fetchPypi, six }:
{ lib
, buildPythonPackage
, fetchPypi
, pytestCheckHook
, six
}:
buildPythonPackage rec {
pname = "langdetect";
version = "1.0.7";
version = "1.0.9";
src = fetchPypi {
inherit pname version;
extension = "zip";
sha256 = "0c5zm6c7xzsigbb9c7v4r33fcpz911zscfwvh3dq1qxdy3ap18ci";
sha256 = "1805svvb7xjm4sf1j7b6nc3409x37pd1xmabfwwjf1ldkzwgxhfb";
};
propagatedBuildInputs = [ six ];
propagatedBuildInputs = [
six
];
checkInputs = [
pytestCheckHook
];
pythonImportsCheck = [ "langdetect" ];
meta = with lib; {
description = "Python port of Google's language-detection library";