mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
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
This commit is contained in:
parent
89e45153e7
commit
b6311a58ed
1 changed files with 9 additions and 3 deletions
|
@ -19136,7 +19136,7 @@ JSON Reference and JSON Pointer.")
|
||||||
(define-public python-fastbencode
|
(define-public python-fastbencode
|
||||||
(package
|
(package
|
||||||
(name "python-fastbencode")
|
(name "python-fastbencode")
|
||||||
(version "0.3.1")
|
(version "0.3.2") ;the last non Rust version
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
|
@ -19145,9 +19145,15 @@ JSON Reference and JSON Pointer.")
|
||||||
;; Delete pre-generated Cython C files.
|
;; Delete pre-generated Cython C files.
|
||||||
(snippet '(for-each delete-file (find-files "." "\\.c$")))
|
(snippet '(for-each delete-file (find-files "." "\\.c$")))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "15x1in22gwam7wwga5lbj1pd8hc9jk741pia3pv1m29n2xywpq2z"))))
|
(base32 "1daal7xgsl2sjxq8pcilcas9wd9j9796wd4rlkhrvv5h0k2k4k53"))))
|
||||||
(build-system pyproject-build-system)
|
(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")
|
(home-page "https://github.com/breezy-team/fastbencode")
|
||||||
(synopsis "Python Bencode (de)serializer with optional fast C extensions")
|
(synopsis "Python Bencode (de)serializer with optional fast C extensions")
|
||||||
(description
|
(description
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue