about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/fasttext/default.nix
blob: f3bddec76bd3fa63a35b5f6263397498a5e713e4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{lib, buildPythonPackage, fetchFromGitHub, numpy, pkgs, pybind11 }:

buildPythonPackage rec {
  inherit (pkgs.fasttext) pname version src;

  buildInputs = [ pybind11 ];

  pythonImportsCheck = [ "fasttext" ];

  propagatedBuildInputs = [ numpy ];

  preBuild = ''
    HOME=$TMPDIR
  '';

  meta = with lib; {
    description = "Python module for text classification and representation learning";
    homepage = "https://fasttext.cc/";
    license = licenses.mit;
    maintainers = with maintainers; [ danieldk ];
  };
}