From 95a140930baacbf4708266976fafdda1e400d2f0 Mon Sep 17 00:00:00 2001 From: Hartmut Goebel Date: Thu, 2 Oct 2025 21:49:19 +0200 Subject: [PATCH] gnu: Add python-opentelemetry-test-utils. * gnu/packages/python-web.scm (python-opentelemetry-test-utils): New variable. Change-Id: If43cc2ba0582ce8cbbc781b960a3fe62c903d538 --- gnu/packages/python-web.scm | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm index 549b009dcc31346700c667011dc902c018c8db7c..4b448711a0d5a97a7ec30e2d06bc6766ed944ce8 100644 --- a/gnu/packages/python-web.scm +++ b/gnu/packages/python-web.scm @@ -1429,6 +1429,25 @@ in Python 3.13 by PEP-594.") (propagated-inputs (list python-opentelemetry-api-bootstrap python-typing-extensions))))) +(define-public python-opentelemetry-test-utils + (package + (name "python-opentelemetry-test-utils") + (version "0.58b0") + (source + (origin + (method url-fetch) + (uri (pypi-uri "opentelemetry_test_utils" version)) + (sha256 + (base32 "0xjp04zjn7m79xsda9wp79rqyzy2c10347s967vp7xvmndwwa0ds")))) + (build-system pyproject-build-system) + (propagated-inputs (list python-asgiref python-opentelemetry-api + python-opentelemetry-sdk)) + (native-inputs (list python-hatchling)) + (home-page "https://opentelemetry.io/docs/languages/python/") + (synopsis "Test utilities for OpenTelemetry unit tests") + (description "Test utilities for @code{OpenTelemetry} unit tests.") + (license license:asl2.0))) + (define-public python-pathy (package (name "python-pathy")