2019-01-27 14:26:24 +00:00
|
|
|
{ lib, buildPythonPackage, fetchPypi, six }:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "langdetect";
|
|
|
|
version = "1.0.7";
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
|
|
|
extension = "zip";
|
|
|
|
sha256 = "0c5zm6c7xzsigbb9c7v4r33fcpz911zscfwvh3dq1qxdy3ap18ci";
|
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ six ];
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Python port of Google's language-detection library";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/Mimino666/langdetect";
|
2019-01-27 14:26:24 +00:00
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = with maintainers; [ earvstedt ];
|
|
|
|
};
|
|
|
|
}
|