guix_mirror_bot pushed a commit to branch master
in repository guix.

commit becf8c331ee614d9b2d34db30707bdfab5f1b744
Author: Hartmut Goebel <[email protected]>
AuthorDate: Thu Oct 2 21:47:43 2025 +0200

    gnu: Add python-opentelemetry-semantic-conventions.
    
    * gnu/packages/python-web.scm (python-opentelemetry-semantic-conventions): 
New
    variable.
    
    Change-Id: I9489eb1906b171917b39b1c62c6a2e257aa6f763
---
 gnu/packages/python-web.scm | 18 ++++++++++++++++++
 1 file changed, 18 insertions(+)

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")

Reply via email to