summaryrefslogtreecommitdiff
path: root/gnu/packages/python-xyz.scm
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-09-19 15:33:43 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-09-20 16:18:48 +0100
commit0c69faace3e828b982ce16822973bb6a561dbafd (patch)
tree0b35695ee58963b7dc0c17e2630148e55c55ffde /gnu/packages/python-xyz.scm
parent63ce69afbfa21b4ceb639e96d64f5b7b63082c38 (diff)
gnu: python-fastbencode: Update to 0.3.2.
* gnu/packages/python-xyz.scm (python-fastbencode): Update to 0.3.2. [arguments] <test-backend>: Use 'unittest. [native-inputs]: Remove python-cython-3 and python-wheel; add python-cython. Change-Id: Ie945290b90ef43bf228b780ca2413397da4211a1
Diffstat (limited to 'gnu/packages/python-xyz.scm')
-rw-r--r--gnu/packages/python-xyz.scm12
1 files changed, 9 insertions, 3 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 29ecb61957..acad29bd68 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -19160,7 +19160,7 @@ JSON Reference and JSON Pointer.")
(define-public python-fastbencode
(package
(name "python-fastbencode")
- (version "0.3.1")
+ (version "0.3.2") ;the last non Rust version
(source
(origin
(method url-fetch)
@@ -19169,9 +19169,15 @@ JSON Reference and JSON Pointer.")
;; Delete pre-generated Cython C files.
(snippet '(for-each delete-file (find-files "." "\\.c$")))
(sha256
- (base32 "15x1in22gwam7wwga5lbj1pd8hc9jk741pia3pv1m29n2xywpq2z"))))
+ (base32 "1daal7xgsl2sjxq8pcilcas9wd9j9796wd4rlkhrvv5h0k2k4k53"))))
(build-system pyproject-build-system)
- (native-inputs (list python-cython-3 python-setuptools python-wheel))
+ (arguments
+ (list
+ #:test-backend #~'unittest
+ #:test-flags #~(list "fastbencode.tests.test_suite")))
+ (native-inputs
+ (list python-cython
+ python-setuptools))
(home-page "https://github.com/breezy-team/fastbencode")
(synopsis "Python Bencode (de)serializer with optional fast C extensions")
(description