1 {lib, buildPythonPackage, fetchFromGitHub, numpy, pkgs, pybind11 }:
3 buildPythonPackage rec {
4 inherit (pkgs.fasttext) pname version src;
6 buildInputs = [ pybind11 ];
8 pythonImportsCheck = [ "fasttext" ];
10 propagatedBuildInputs = [ numpy ];
17 description = "Python module for text classification and representation learning";
18 homepage = "https://fasttext.cc/";
19 license = licenses.mit;
20 maintainers = with maintainers; [ danieldk ];