guix_mirror_bot pushed a commit to branch python-team in repository guix. commit 1ddd7bc7b90b60e39e47fdcc988c3396716c83f1 Author: Sharlatan Hellseher <sharlata...@gmail.com> 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 c9b0291aa8..6a239125e3 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -27527,25 +27527,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