blob: e2797b96c2f367d58b5751081f9661ab952643e9 (
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
39
40
41
42
43
44
45
|
{
lib,
buildPythonPackage,
hatchling,
pydantic,
logfire-api,
httpx,
opentelemetry-api,
pythonOlder,
sources,
}:
buildPythonPackage rec {
pname = "pydantic-graph";
version = sources.pydantic-ai.version;
pyproject = true;
disabled = pythonOlder "3.8";
src = sources.pydantic-ai;
sourceRoot = "pydantic-ai-src/pydantic_graph";
build-system = [hatchling];
dependencies = [
pydantic
logfire-api
httpx
opentelemetry-api
];
nativeCheckInputs = [
pydantic
logfire-api
httpx
];
pythonRelaxDeps = true;
postPatch = ''
substituteInPlace pyproject.toml \
--replace-fail ', "uv-dynamic-versioning>=0.7.0"' "" \
--replace-fail 'dynamic = ["version"]' 'version = "${version}"'
'';
pythonImportsCheck = ["pydantic_graph"];
meta = {
description = "PydanticAI core logic with minimal required dependencies.";
homepage = "https://github.com/pydantic/pydantic-ai";
changelog = "https://github.com/pydantic/pydantic-ai/releases/tag/v${version}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [bsima];
};
}
|