From 99c5f2413bc6331c86c8a1fff01acdcde4b760ed Mon Sep 17 00:00:00 2001 From: Nicolas Graves Date: Sun, 3 May 2026 01:41:36 +0200 Subject: [PATCH] gnu: python-logutils: Update to 0.3.5-0.c032f72. * gnu/packages/python-xyz.scm (python-logutils): Update to 0.3.5-0.c032f72. Change-Id: Ic0f6e15b42c2eac3c6d7639a162cc1032bc432af Signed-off-by: Sharlatan Hellseher --- gnu/packages/python-xyz.scm | 20 +++++++++++++------- 1 file changed, 13 insertions(+), 7 deletions(-) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 421f02bfcf8..714f0ccfb97 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -31718,21 +31718,27 @@ environment.") (define-public python-logutils (package (name "python-logutils") - (version "0.3.5") + (properties '((commit . "c032f726c36d4f932b5a902fdb048f9f07c40d0d") + (revision . "0"))) + (version (git-version "0.3.5" + (assoc-ref properties 'revision) + (assoc-ref properties 'commit))) (source (origin - (method url-fetch) - (uri (pypi-uri "logutils" version)) + (method git-fetch) + (uri (git-reference + (url "https://bitbucket.org/vinay.sajip/logutils") + (commit (assoc-ref properties 'commit)))) + (file-name (git-file-name name version)) (sha256 - (base32 - "10lsi5wv5ysnvf9ya4ncbix6mmipnv5067sf2cglc2f2sljql1dw")))) + (base32 "188hbcyg95ibjwx4qgbd2qi9vm1h8pq2sllkm847146zcahab3a2")))) (build-system pyproject-build-system) (arguments (list #:test-flags ;; XXX: Unclear why this test fails. - #~(list "--deselect=tests/test_adapter.py::AdapterTest::test_hashandlers" - "--ignore=tests/test_redis.py"))) + #~(list "--deselect=tests/test_adapter.py::\ +AdapterTest::test_hashandlers"))) (native-inputs (list python-pytest python-setuptools)) (home-page "https://bitbucket.org/vinay.sajip/logutils/") (synopsis "Logging utilities")