From c0e770a57d362301bbfd67b0979ab642480d6ca4 Mon Sep 17 00:00:00 2001 From: Cayetano Santos Date: Sat, 21 Mar 2026 12:44:00 +0100 Subject: gnu: python-loguru: Update to 0.7.3. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * gnu/packages/python-xyz.scm (python-loguru): Update to 0.7.3. [source]: Switch to git-fetch. [arguments]: Update ’#:test-flags. [native-inputs]: Remove python-wheel; add python-flit-core. [description]: Add trailing period. Change-Id: I3895490cb5cbf93885309f9e6948171d73d4b46e --- gnu/packages/python-xyz.scm | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) (limited to 'gnu/packages') diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 904d99322b4..bd797cb6886 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -31408,33 +31408,33 @@ older versions of Python and so are packaged here.") (define-public python-loguru (package (name "python-loguru") - (version "0.7.2") + (version "0.7.3") (source (origin - (method url-fetch) - (uri (pypi-uri "loguru" version)) + (method git-fetch) + (uri (git-reference + (url "https://github.com/Delgan/loguru") + (commit version))) + (file-name (git-file-name name version)) (sha256 - (base32 "1b2ipp8di3y10gd7kiin9fyazv5rijbfwh3383yk8psi48ssawg6")))) + (base32 "0vnnhjw8r7d75sy0sdimryanapwh5ivy6v6gci0d2kix7g7h9ixm")))) (build-system pyproject-build-system) (arguments (list #:test-flags - #~(list"--numprocesses" (number->string (parallel-job-count)) - ;; All of these fail with: error: Cannot find implementation or - ;; library stub for module named "loguru" - "--ignore=tests/typesafety/test_logger.yml"))) + #~(list"--numprocesses" (number->string (parallel-job-count))))) (native-inputs - (list python-freezegun + (list python-flit-core + python-freezegun python-pytest python-pytest-mypy-plugins python-pytest-xdist - python-setuptools - python-wheel)) + python-setuptools)) (propagated-inputs (list python-colorama)) (home-page "https://github.com/Delgan/loguru") (synopsis "Python logging made (stupidly) simple") - (description "Python logging made (stupidly) simple") + (description "Python logging made (stupidly) simple.") (license license:expat))) (define-public python-helper -- cgit v1.3