13 buildPythonPackage rec {
18 disabled = pythonOlder "3.9";
20 src = fetchFromGitHub {
23 rev = "refs/tags/v${version}";
24 hash = "sha256-7vkw6H0ZQoHEwNusY6QWh/vPbSCdP1ZaaqABHsZH6hQ=";
27 patches = [ ./cstdint.patch ];
35 propagatedBuildInputs = [
40 pythonImportsCheck = [ "floret" ];
42 nativeCheckInputs = [ pytestCheckHook ];
45 description = "FastText + Bloom embeddings for compact, full-coverage vectors with spaCy";
46 homepage = "https://github.com/explosion/floret";
47 license = licenses.mit;
48 maintainers = with maintainers; [ GaetanLepage ];