diff options
| author | Cayetano Santos <csantosb@inventati.org> | 2026-03-21 12:44:00 +0100 |
|---|---|---|
| committer | Cayetano Santos <csantosb@inventati.org> | 2026-03-21 12:49:36 +0100 |
| commit | c0e770a57d362301bbfd67b0979ab642480d6ca4 (patch) | |
| tree | 2c11cafd009c67cc16cb6842031f11970b2f87af /gnu/packages | |
| parent | 2027e83c4bcf837fddd7ba01a6cd2e8c594602d4 (diff) | |
gnu: python-loguru: Update to 0.7.3.
* 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
Diffstat (limited to 'gnu/packages')
| -rw-r--r-- | gnu/packages/python-xyz.scm | 24 |
1 files changed, 12 insertions, 12 deletions
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 |
