diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2024-05-07 18:52:11 +0200 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-12-13 20:18:41 +0000 |
commit | 36e2744b3ff328a36be4f9bf9fd84c06d7cd07fc (patch) | |
tree | 7ef4dc493d2937be510695a61508c7f21bec7981 | |
parent | bf740bd0c8d25c82aae7ba3488b9cdb5784ed6f6 (diff) | |
download | guix-36e2744b3ff328a36be4f9bf9fd84c06d7cd07fc.tar.gz guix-36e2744b3ff328a36be4f9bf9fd84c06d7cd07fc.zip |
gnu: python-json-logger: Update to 2.0.7.
* gnu/packages/python-xyz.scm (python-json-logger): Update to 2.0.7.
[build-system]: Use pyproject-build-system.
[native-inputs]: Add python-pytest, python-setuptools, and python-wheel.
Change-Id: Ic927fd9012fc7761f76e74e464d6344b68aa5787
-rw-r--r-- | gnu/packages/python-xyz.scm | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 021a1367e8..9634466742 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -31834,17 +31834,17 @@ for embedding context in JSON objects.") (define-public python-json-logger (package (name "python-json-logger") - (version "0.1.11") + (version "2.0.7") (source (origin (method url-fetch) (uri (pypi-uri "python-json-logger" version)) (sha256 (base32 - "10g2ya6nsvn5vxzvq2wb8q4d43i3d7756i5rxyjna6d0y9i138xp")))) - (build-system python-build-system) - (home-page - "https://github.com/madzak/python-json-logger") + "071f9d62ds1xdp88yzsfpf1pba2f78cp18193smcads2sc1frrr3")))) + (build-system pyproject-build-system) + (native-inputs (list python-pytest python-setuptools python-wheel)) + (home-page "https://github.com/madzak/python-json-logger") (synopsis "JSON log formatter in Python") (description "This library allows standard Python logging to output log data as JSON objects. With JSON we can make our logs more readable by machines and |