blob: db8a1477168a6375ee5baad785a84f21c3efcede (
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
31
32
33
34
35
36
37
38
|
{
lib,
stdenv,
buildPythonPackage,
fetchPypi,
pybind11,
}:
buildPythonPackage rec {
pname = "fasttext-predict";
version = "0.9.2.4";
format = "setuptools";
src = fetchPypi {
pname = "fasttext_predict";
inherit version;
hash = "sha256-GKb7DXTH35KA2x+Wy3XZkL/QBPqdZpST6j3T1U+E28c=";
};
postPatch = lib.optionalString stdenv.hostPlatform.isDarwin ''
substituteInPlace setup.py \
--replace-fail "-flto" ""
'';
nativeBuildInputs = [ pybind11 ];
# tests are removed from fork
doCheck = false;
pythonImportsCheck = [ "fasttext" ];
meta = {
description = "fasttext with wheels and no external dependency, but only the predict method (<1MB)";
homepage = "https://github.com/searxng/fasttext-predict/";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ SuperSandro2000 ];
};
}
|