Files
nixpkgs/pkgs/development/python-modules/openai-agents/default.nix
T
Martin Weinelt 83d0b1e9b9 python3Packages.openai-agents: 0.4.2 -> 0.6.9
https://github.com/openai/openai-agents-python/releases/tag/0.6.9

This commit was automatically generated using update-python-libraries.
2026-02-01 17:19:42 +01:00

52 lines
926 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
hatchling,
griffe,
mcp,
openai,
pydantic,
requests,
types-requests,
typing-extensions,
}:
buildPythonPackage rec {
pname = "openai-agents";
version = "0.6.9";
pyproject = true;
src = fetchPypi {
inherit version;
pname = "openai_agents";
hash = "sha256-5VYjgntKGxHWbsAIS9K56ixtYPIz4EVHgDr0M5Z+L9s=";
};
build-system = [
hatchling
];
dependencies = [
griffe
mcp
openai
pydantic
requests
types-requests
typing-extensions
];
pythonImportsCheck = [
"agents"
];
meta = {
changelog = "https://github.com/openai/openai-agents-python/releases/tag/${version}";
homepage = "https://github.com/openai/openai-agents-python";
description = "Lightweight, powerful framework for multi-agent workflows";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.bryanhonof ];
};
}