Archived
1
0
Fork 0

gnu: python-billiard: Update to 3.6.4.0.

* gnu/packages/python-xyz (python-billiard): Update to 3.6.4.0.
[source]: Make some cosmetic changes.
[arguments]: Add 'remove-win-files to remove files that break tests.
[native-inputs]: Add python-psutil.
[synopsis]: Don't break the line.

Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
This commit is contained in:
Vinicius Monego 2021-12-19 00:29:11 +00:00 committed by Nicolas Goaziou
parent f6aa994a74
commit 04decb1749
No known key found for this signature in database
GPG key ID: DA00B4F048E92F2D

View file

@ -14035,20 +14035,29 @@ RabbitMQ messaging server is the most popular implementation.")
(define-public python-billiard (define-public python-billiard
(package (package
(name "python-billiard") (name "python-billiard")
(version "3.5.0.5") (version "3.6.4.0")
(source (source
(origin (origin
(method url-fetch) (method url-fetch)
(uri (pypi-uri "billiard" version)) (uri (pypi-uri "billiard" version))
(sha256 (sha256
(base32 (base32 "0ismj2p8c66ykpss94rs0bfra5agxxmljz8r3gaq79r8valfb799"))))
"03msmapj3s5zgqk87d646mafz7a01h5bm2wijalgpi0s80ks5na2"))))
(build-system python-build-system) (build-system python-build-system)
(arguments
`(#:phases
(modify-phases %standard-phases
(add-after 'unpack 'remove-win-files
(lambda _
(for-each delete-file-recursively
;; test_multiprocessing seem to be written in Python2.
'("t/integration/tests/test_multiprocessing.py"
"t/unit/test_win32.py"
"billiard/popen_spawn_win32.py"
"billiard/_win.py")))))))
(native-inputs (native-inputs
(list python-case python-pytest)) (list python-case python-psutil python-pytest))
(home-page "https://github.com/celery/billiard") (home-page "https://github.com/celery/billiard")
(synopsis (synopsis "Python multiprocessing fork with improvements and bugfixes")
"Python multiprocessing fork with improvements and bugfixes")
(description (description
"Billiard is a fork of the Python 2.7 multiprocessing package. The "Billiard is a fork of the Python 2.7 multiprocessing package. The
multiprocessing package itself is a renamed and updated version of R Oudkerk's multiprocessing package itself is a renamed and updated version of R Oudkerk's