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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
# build
poetry-core,
# deps
httpcore,
httpx,
openai,
pydantic,
python-dotenv,
requests,
typing-extensions,
# tests
pytest-asyncio,
pytest-cov-stub,
pytest-mock,
pytestCheckHook,
# passthru
unstableGitUpdater,
}:
buildPythonPackage (finalAttrs: {
pname = "exa-py";
version = "2.12.0-unstable-2026-04-15";
pyproject = true;
__structuredAttrs = true;
# pypi doesn't include tests but there aren't any upstream git tags
src = fetchFromGitHub {
owner = "exa-labs";
repo = "exa-py";
rev = "af7f88999763f1cb7e3c4a67f4aa24cef5f6eb11";
hash = "sha256-7rLEvjngSRObFdT1DcrZfqWBCsvWVxdNIgxBNhNNk+4=";
};
# https://github.com/pytest-dev/pytest-asyncio/issues/658
# default behaviour changes with new python version.
# planning on trying to vendor upstream
postPatch = ''
substituteInPlace tests/unit/test_search_monitors.py --replace-fail \
'get_event_loop().run_until_complete' 'run'
'';
build-system = [
poetry-core
];
dependencies = [
httpcore
httpx
openai
pydantic
python-dotenv
requests
typing-extensions
];
pythonImportsCheck = [
"exa_py"
];
nativeCheckInputs = [
pytest-asyncio
pytest-cov-stub
pytest-mock
pytestCheckHook
];
pytestFlags = [ "tests/" ];
passthru.updateScript = unstableGitUpdater { };
meta = {
description = "Official Python SDK for Exa, the web search API for AI";
homepage = "https://github.com/exa-labs/exa-py/";
maintainers = with lib.maintainers; [ ethancedwards8 ];
license = lib.licenses.mit;
};
})
|