diff options
| author | Hartmut Goebel <h.goebel@crazy-compilers.com> | 2025-10-02 21:47:43 +0200 |
|---|---|---|
| committer | Hartmut Goebel <h.goebel@crazy-compilers.com> | 2025-10-07 15:25:37 +0200 |
| commit | becf8c331ee614d9b2d34db30707bdfab5f1b744 (patch) | |
| tree | 030a4edec1ee4f92d502ffe28ab5ab24e931665c /gnu/packages/python-web.scm | |
| parent | bac5a57973fe31513b54d7350990b825d6dc2594 (diff) | |
gnu: Add python-opentelemetry-semantic-conventions.
* gnu/packages/python-web.scm (python-opentelemetry-semantic-conventions): New
variable.
Change-Id: I9489eb1906b171917b39b1c62c6a2e257aa6f763
Diffstat (limited to 'gnu/packages/python-web.scm')
| -rw-r--r-- | gnu/packages/python-web.scm | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm index 6096f399e8..17496c8812 100644 --- a/gnu/packages/python-web.scm +++ b/gnu/packages/python-web.scm @@ -1401,6 +1401,24 @@ in Python 3.13 by PEP-594.") python-opentelemetry-semantic-conventions-bootstrap)) (native-inputs (list python-hatchling))))) +(define-public python-opentelemetry-semantic-conventions + (package + (name "python-opentelemetry-semantic-conventions") + (version "0.58b0") + (source + (origin + (method url-fetch) + (uri (pypi-uri "opentelemetry_semantic_conventions" version)) + (sha256 + (base32 "098czakcawikaspl46vy6vickw80mm2bnrspflrw8ya24r8nzm3b")))) + (build-system pyproject-build-system) + (propagated-inputs (list python-opentelemetry-api python-typing-extensions)) + (native-inputs (list python-hatchling)) + (home-page "https://opentelemetry.io/docs/languages/python/") + (synopsis "OpenTelemetry Semantic Conventions") + (description "@code{OpenTelemetry} Semantic Conventions.") + (license license:asl2.0))) + (define-public python-pathy (package (name "python-pathy") |
