guix_mirror_bot pushed a commit to branch python-team
in repository guix.
commit 5cb3a474eeeb2838a3cc85712302de793c20ee3c
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Sat Jul 12 14:40:14 2025 +0100
gnu: python-rencode: Update to 1.0.8.
* gnu/packages/python-xyz.scm (python-rencode): Update to 1.0.8.
[native-inputs]: Remove pkg-config; add python-pytest and
python-poetry-core.
Change-Id: I5b266ac0c559f000aeca8edb4cc0f0d68ac0936a
---
gnu/packages/python-xyz.scm | 20 +++++++-------------
1 file changed, 7 insertions(+), 13 deletions(-)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 61c5191f8b..5192ef92df 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -27484,25 +27484,19 @@ functionality like full case-folding for
case-insensitive matches in Unicode.")
(define-public python-rencode
(package
(name "python-rencode")
- (version "1.0.5")
+ (version "1.0.8")
(source
(origin
(method url-fetch)
(uri (pypi-uri "rencode" version))
(sha256
(base32
- "0mzwdq1is7kyyr32i5k4iz6g5xxdvmiyc132jnc60p9m6lnwjrpv"))))
- (build-system python-build-system)
- (arguments
- `(#:phases
- (modify-phases %standard-phases
- (add-before 'check 'delete-bogus-test
- ;; This test requires /home/aresch/Downloads, which is not provided
by
- ;; the build environment.
- (lambda _
- (delete-file "rencode/t.py")
- #t)))))
- (native-inputs (list pkg-config python-cython))
+ "08kpkalma901ml8ayy55aypvl6i1g51bf2bsbdhkbp2av2vdkcl3"))))
+ (build-system pyproject-build-system)
+ (native-inputs
+ (list python-cython
+ python-pytest
+ python-poetry-core))
(home-page "https://github.com/aresch/rencode")
(synopsis "Serialization of heterogeneous data structures")
(description