9 buildPythonPackage rec {
10 inherit (pkgs.fasttext) pname version src;
12 format = "setuptools";
14 buildInputs = [ pybind11 ];
16 pythonImportsCheck = [ "fasttext" ];
18 propagatedBuildInputs = [ numpy ];
25 description = "Python module for text classification and representation learning";
26 homepage = "https://fasttext.cc/";
27 license = licenses.mit;