diff options
| author | Nicolas Graves <ngraves@ngraves.fr> | 2025-02-24 08:00:16 +0100 |
|---|---|---|
| committer | Andreas Enge <andreas@enge.fr> | 2025-04-16 11:46:14 +0200 |
| commit | b160f49b59b7ab6f4fda8dfccf4a545a389ed844 (patch) | |
| tree | 26da7aab076da3dc41d26c5c9934cdcd238bd456 | |
| parent | 090f572edf2fd17f958587c0cdd65f2c3e83f956 (diff) | |
gnu: python-multiprocessing-on-dill: Use pyproject-build-system.
* gnu/packages/python-xyz.scm (python-multiprocessing-on-dill): Use pyproject-build-system.
[arguments]: Remove field.
[native-inputs]: Remove uneeded python-check-manifest. Add python-pytest.
| -rw-r--r-- | gnu/packages/python-xyz.scm | 12 |
1 files changed, 2 insertions, 10 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index d51362fd11..3051590fd7 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -30646,17 +30646,9 @@ library's @code{threading} module.") (sha256 (base32 "1rs5a3hx1fcpfsxxkl5kx6g06c82wqjqgdqyny5l1ggl1wq0rmfn")))) - (build-system python-build-system) - (arguments - (list - #:phases - #~(modify-phases %standard-phases - (replace 'check - (lambda* (#:key tests? #:allow-other-keys) - (when tests? - (invoke "pytest" "-vv"))))))) + (build-system pyproject-build-system) (propagated-inputs (list python-dill)) - (native-inputs (list python-check-manifest python-pytest python-wheel)) + (native-inputs (list python-pytest python-setuptools python-wheel)) (home-page "https://github.com/sixty-north/multiprocessing_on_dill") (synopsis "Multiprocessing using dill instead of pickle") (description |
