~ruther/guix-local

8cbc832c11087c3186d28ade489c96bac9a5a232 — Hartmut Goebel 4 months ago 4bedf38
gnu: Add python-opentelemetry-sdk.

* gnu/packages/python-web.scm (python-opentelemetry-sdk): New variable.

Change-Id: If358cc32c5626a01b42664517a637963a38d2eba
1 files changed, 22 insertions(+), 0 deletions(-)

M gnu/packages/python-web.scm
M gnu/packages/python-web.scm => gnu/packages/python-web.scm +22 -0
@@ 1370,6 1370,28 @@ in Python 3.13 by PEP-594.")
       #:tests? #f))
     (native-inputs (list python-hatchling)))))

(define-public python-opentelemetry-sdk
  (package
    (name "python-opentelemetry-sdk")
    (version "1.37.0")
    (source
     (origin
       (method url-fetch)
       (uri (pypi-uri "opentelemetry_sdk" version))
       (sha256
        (base32 "19fx8vf35kcss43i17zqngqhmglb36dnddasbdvfsgcm22f0i3nc"))))
    (build-system pyproject-build-system)
    (propagated-inputs (list python-opentelemetry-api
                             python-opentelemetry-semantic-conventions
                             python-typing-extensions))
    (native-inputs (list python-hatchling
                         python-opentelemetry-test-utils-bootstrap
                         python-pytest))
    (home-page "https://opentelemetry.io/docs/languages/python/")
    (synopsis "OpenTelemetry Python SDK")
    (description "@code{OpenTelemetry} Python SDK.")
    (license license:asl2.0)))

(define-public python-pathy
  (package
    (name "python-pathy")