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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
|
{
lib,
authlib,
buildPythonPackage,
deprecation,
fastapi,
fetchFromGitHub,
flask,
grpcio-health-checking,
grpcio-tools,
grpcio,
h5py,
httpx,
litestar,
numpy,
pandas,
polars,
pydantic,
pytest-asyncio,
pytest-httpserver,
pytestCheckHook,
pythonOlder,
requests,
setuptools-scm,
validators,
}:
buildPythonPackage rec {
pname = "weaviate-client";
version = "4.19.2";
pyproject = true;
disabled = pythonOlder "3.12";
src = fetchFromGitHub {
owner = "weaviate";
repo = "weaviate-python-client";
tag = "v${version}";
hash = "sha256-LQLvMoj91+B4dU6z4oyxNy7eX+6C5cSL2IBCUVgZ05w=";
};
pythonRelaxDeps = [
"httpx"
"validators"
"authlib"
];
build-system = [ setuptools-scm ];
dependencies = [
authlib
deprecation
fastapi
flask
grpcio
grpcio-health-checking
grpcio-tools
h5py
httpx
litestar
numpy
pandas
polars
pydantic
requests
validators
];
nativeCheckInputs = [
pytest-httpserver
pytest-asyncio
pytestCheckHook
];
preCheck = ''
export HOME=$(mktemp -d)
sed -i '/raw.githubusercontent.com/,+1d' test/test_util.py
substituteInPlace pytest.ini \
--replace-fail "--benchmark-skip" ""
rm -rf test/test_embedded.py # Need network
'';
disabledTests = [
# Need network
"test_auth_header_with_catchall_proxy"
"test_bearer_token"
"test_client_with_extra_options"
"test_integration_config"
"test_refresh_async"
"test_refresh_of_refresh_async"
"test_refresh_of_refresh"
"test_token_refresh_timeout"
"test_with_simple_auth_no_oidc_via_api_key"
];
enabledTestPaths = [
"test"
"mock_tests"
];
__darwinAllowLocalNetworking = true;
pythonImportsCheck = [ "weaviate" ];
meta = {
description = "Python native client for easy interaction with a Weaviate instance";
homepage = "https://github.com/weaviate/weaviate-python-client";
changelog = "https://github.com/weaviate/weaviate-python-client/releases/tag/${src.tag}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ happysalada ];
badPlatforms = [
# weaviate.exceptions.WeaviateGRPCUnavailableError
lib.systems.inspect.patterns.isDarwin
];
};
}
|