diff options
| author | Hartmut Goebel <h.goebel@crazy-compilers.com> | 2025-10-02 21:39:49 +0200 |
|---|---|---|
| committer | Hartmut Goebel <h.goebel@crazy-compilers.com> | 2025-10-07 15:25:37 +0200 |
| commit | 40dc6a03a68124ffe977691fd3ab5225081d575c (patch) | |
| tree | a6988d66f88a3ff7118d739a3949032d22ff596d /gnu/packages/python-web.scm | |
| parent | f0aefd0b5c1032927b4969a18047dd363cf8c831 (diff) | |
gnu: Add python-opentelemetry-api.
* gnu/packages/python-web.scm (python-opentelemetry-api): New variable.
Diffstat (limited to 'gnu/packages/python-web.scm')
| -rw-r--r-- | gnu/packages/python-web.scm | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm index df2da32bf2c..eb92c7133cb 100644 --- a/gnu/packages/python-web.scm +++ b/gnu/packages/python-web.scm @@ -1341,6 +1341,26 @@ feaatures are: in Python 3.13 by PEP-594.") (license license:psfl))) +(define-public python-opentelemetry-api + (package + (name "python-opentelemetry-api") + (version "1.37.0") + (source + (origin + (method url-fetch) + (uri (pypi-uri "opentelemetry_api" version)) + (sha256 + (base32 "19yr3hfwdc9sv8df4vydxcsxnpld3xi57siq4w8xanrm42qka1sl")))) + (build-system pyproject-build-system) + (propagated-inputs (list python-importlib-metadata + python-typing-extensions)) + (native-inputs (list python-hatchling + python-opentelemetry-test-utils-bootstrap)) + (home-page "https://opentelemetry.io/docs/languages/python/") + (synopsis "OpenTelemetry Python API") + (description "@code{OpenTelemetry} Python API.") + (license license:asl2.0))) + (define-public python-pathy (package (name "python-pathy") |
