summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/fasttext/default.nix
blob: b5cc7922b63701c71c795b8769e62b3ca7488e9a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{
  lib,
  buildPythonPackage,
  numpy,
  pkgs,
  pybind11,
}:

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

  format = "setuptools";

  buildInputs = [ pybind11 ];

  pythonImportsCheck = [ "fasttext" ];

  propagatedBuildInputs = [ numpy ];

  preBuild = ''
    HOME=$TMPDIR
  '';

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