Merge pull request #119126 from fabaff/pycomfoconnect
[NixPkgs.git] / pkgs / development / python-modules / fasttext / default.nix
blobf3bddec76bd3fa63a35b5f6263397498a5e713e4
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 ];
12   preBuild = ''
13     HOME=$TMPDIR
14   '';
16   meta = with lib; {
17     description = "Python module for text classification and representation learning";
18     homepage = "https://fasttext.cc/";
19     license = licenses.mit;
20     maintainers = with maintainers; [ danieldk ];
21   };