Add task due notify

This commit is contained in:
2026-03-03 14:54:01 +11:00
parent 329703abf0
commit fa4591c6b3
5 changed files with 85 additions and 28 deletions

View File

@@ -1,19 +1,25 @@
{ lib, buildPythonPackage, fetchPypi, python3Packages }:
buildPythonPackage rec {
{ lib
, python3Packages
, fetchPypi
}:
python3Packages.buildPythonPackage rec {
pname = "agentops";
version = "0.4.21";
pyproject = true;
build-system = with python3Packages; [ hatchling ];
src = fetchPypi {
inherit pname version;
hash = "sha256-47759c6dfd6ea58bad2f7764257e4778cb2e34ae180cef642f60f56adced6510";
hash = "sha256-R3Wcbf1upYutL3dkJX5HeMsuNK4YDO9kL2D1atztZRA=";
};
# Bypasses strict dependency version checks that fail in Nixpkgs
pythonRelaxDeps = [ "packaging" "psutil" "termcolor" ];
propagatedBuildInputs = with python3Packages; [
pydantic
requests
httpx
websockets
pydantic requests httpx websockets aiohttp
opentelemetry-api opentelemetry-exporter-otlp-proto-http
opentelemetry-instrumentation opentelemetry-sdk opentelemetry-semantic-conventions
ordered-set packaging psutil pyyaml termcolor wrapt
];
pythonImportsCheck = [ "agentops" ];
meta = with lib; {
description = "Observability and DevTool Platform for AI Agents";
homepage = "https://github.com/AgentOps-AI/agentops";