mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-19 09:22:05 -05:00
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:
parent
f6aa994a74
commit
04decb1749
1 changed files with 15 additions and 6 deletions
|
@ -14035,20 +14035,29 @@ (define-public python2-kombu
|
|||
(define-public python-billiard
|
||||
(package
|
||||
(name "python-billiard")
|
||||
(version "3.5.0.5")
|
||||
(version "3.6.4.0")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (pypi-uri "billiard" version))
|
||||
(sha256
|
||||
(base32
|
||||
"03msmapj3s5zgqk87d646mafz7a01h5bm2wijalgpi0s80ks5na2"))))
|
||||
(base32 "0ismj2p8c66ykpss94rs0bfra5agxxmljz8r3gaq79r8valfb799"))))
|
||||
(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
|
||||
(list python-case python-pytest))
|
||||
(list python-case python-psutil python-pytest))
|
||||
(home-page "https://github.com/celery/billiard")
|
||||
(synopsis
|
||||
"Python multiprocessing fork with improvements and bugfixes")
|
||||
(synopsis "Python multiprocessing fork with improvements and bugfixes")
|
||||
(description
|
||||
"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
|
||||
|
|
Loading…
Reference in a new issue