summary refs log tree commit diff
path: root/pkgs/development/python-modules/langdetect/default.nix
blob: 57fee2664cdfb5aa2a953ab32eb86e02351d282d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ 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";
    homepage = "https://github.com/Mimino666/langdetect";
    license = licenses.asl20;
    maintainers = with maintainers; [ earvstedt ];
  };
}