diff options
| author | Cayetano Santos <csantosb@inventati.org> | 2025-05-26 09:04:20 +0200 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-05-26 18:23:23 +0100 |
| commit | 57144dfe41944bafd13180ff19d731cea1bf6eed (patch) | |
| tree | 97356643b736fa7a7afc7b7e54dc0f3b64f11736 /gnu/packages/python-xyz.scm | |
| parent | cfa2de2a77df3876061c8d26c104d2ebbae2631b (diff) | |
gnu: Add python-logfury.
* gnu/packages/python-xyz.scm (python-logfury): New variable.
Change-Id: I8f8550e302366d95943fa66050a05e6f2bcbe009
Modified-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu/packages/python-xyz.scm')
| -rw-r--r-- | gnu/packages/python-xyz.scm | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 85ed810534..2e8ff4b297 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -1257,6 +1257,30 @@ provided to perform logging in the background.") attributes.") (license license:bsd-2))) +(define-public python-logfury + (package + (name "python-logfury") + (version "1.0.1") + (source + (origin + (method url-fetch) + (uri (pypi-uri "logfury" version)) + (sha256 + (base32 "09kanw1iv61hgmd858xkc9kck8ia91qdyb954i4m7bdrxan5s2hk")))) + (build-system pyproject-build-system) + (native-inputs + (list python-pytest + python-setuptools + python-setuptools-scm + python-testfixtures + python-wheel)) + (home-page "https://github.com/reef-technologies/logfury/") + (synopsis "Logging of method calls for python libraries") + (description + "Logfury is a tool for python library maintainers. It allows for +responsible, low-boilerplate logging of method calls.") + (license license:bsd-3))) + (define-public python-logzero (package (name "python-logzero") |
