diff options
| author | Hartmut Goebel <h.goebel@crazy-compilers.com> | 2025-10-02 21:49:19 +0200 |
|---|---|---|
| committer | Hartmut Goebel <h.goebel@crazy-compilers.com> | 2025-10-07 15:25:38 +0200 |
| commit | 95a140930baacbf4708266976fafdda1e400d2f0 (patch) | |
| tree | 165e14a6052b87346509f4be27ebe34507dc048b /gnu/packages/python-web.scm | |
| parent | b5c8fb84be29737c5efabb43c170911a55063223 (diff) | |
gnu: Add python-opentelemetry-test-utils.
* gnu/packages/python-web.scm (python-opentelemetry-test-utils): New variable.
Change-Id: If43cc2ba0582ce8cbbc781b960a3fe62c903d538
Diffstat (limited to 'gnu/packages/python-web.scm')
| -rw-r--r-- | gnu/packages/python-web.scm | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm index 549b009dcc3..4b448711a0d 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") |
