pythonPackages.langdetect: init at 1.0.7
This commit is contained in:
parent
071f3b34e6
commit
72aec3e01c
21
pkgs/development/python-modules/langdetect/default.nix
Normal file
21
pkgs/development/python-modules/langdetect/default.nix
Normal file
@ -0,0 +1,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 ];
|
||||||
|
};
|
||||||
|
}
|
@ -484,6 +484,8 @@ in {
|
|||||||
mpi = pkgs.openmpi;
|
mpi = pkgs.openmpi;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
langdetect = callPackage ../development/python-modules/langdetect { };
|
||||||
|
|
||||||
libmr = callPackage ../development/python-modules/libmr { };
|
libmr = callPackage ../development/python-modules/libmr { };
|
||||||
|
|
||||||
limitlessled = callPackage ../development/python-modules/limitlessled { };
|
limitlessled = callPackage ../development/python-modules/limitlessled { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user