gnu: python-billiard: Update to 4.2.0.
* gnu/packages/python-xyz.scm (python-billiard): Update to 4.2.0. [build-system]: Use pyproject-build-system. [arguments]: Use G-Expressions. Do not delete test files. Change-Id: I69ec62c0c28e9c7ff6ce65f722b250f50dbb33da
This commit is contained in:
		
							parent
							
								
									423ca234cb
								
							
						
					
					
						commit
						a65a96aff6
					
				
					 1 changed files with 9 additions and 13 deletions
				
			
		|  | @ -19085,25 +19085,21 @@ 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.6.4.0") |     (version "4.2.0") | ||||||
|     (source |     (source | ||||||
|      (origin |      (origin | ||||||
|        (method url-fetch) |        (method url-fetch) | ||||||
|        (uri (pypi-uri "billiard" version)) |        (uri (pypi-uri "billiard" version)) | ||||||
|        (sha256 |        (sha256 | ||||||
|         (base32 "0ismj2p8c66ykpss94rs0bfra5agxxmljz8r3gaq79r8valfb799")))) |         (base32 "0b2svqx81511m0k2swjkybcx69f541dzd4rgfdxa2ni7rf232g4s")))) | ||||||
|     (build-system python-build-system) |     (build-system pyproject-build-system) | ||||||
|     (arguments |     (arguments | ||||||
|      `(#:phases |      (list #:phases #~(modify-phases %standard-phases | ||||||
|        (modify-phases %standard-phases |                         (add-after 'unpack 'remove-win-files | ||||||
|          (add-after 'unpack 'remove-win-files |                           (lambda _ | ||||||
|            (lambda _ |                             (for-each delete-file-recursively | ||||||
|              (for-each delete-file-recursively |                                       '("billiard/popen_spawn_win32.py" | ||||||
|                        ;; test_multiprocessing seem to be written in Python2. |                                         "billiard/_win.py"))))))) | ||||||
|                        '("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-psutil python-pytest)) |      (list python-case python-psutil python-pytest)) | ||||||
|     (home-page "https://github.com/celery/billiard") |     (home-page "https://github.com/celery/billiard") | ||||||
|  |  | ||||||
		Reference in a new issue