diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-01-23 23:54:44 +0000 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-01-23 23:54:44 +0000 |
commit | b537437af714eabbec88d7b19d3b008fdfd6b1b3 (patch) | |
tree | ed0ff9d34e07bf8339afb875cb3ba3e75677a977 | |
parent | 5a616cc14b25d173680aa2f4787b996b68f899e0 (diff) | |
download | guix-b537437af714eabbec88d7b19d3b008fdfd6b1b3.tar.gz guix-b537437af714eabbec88d7b19d3b008fdfd6b1b3.zip |
gnu: python-pydicom: Simplify package style.
* gnu/packages/python-science.scm (python-pydicom)[build-system]: Swap
to pyproject-build-system.
[description]: Simplify wording, indent.
Change-Id: I7ef413ea2da6cbb83eb33424c559f7ac5ed549cb
-rw-r--r-- | gnu/packages/python-science.scm | 47 |
1 files changed, 21 insertions, 26 deletions
diff --git a/gnu/packages/python-science.scm b/gnu/packages/python-science.scm index a49562643b..466f99b756 100644 --- a/gnu/packages/python-science.scm +++ b/gnu/packages/python-science.scm @@ -2145,40 +2145,35 @@ functions, convolutions, artificial neural networks etc.") (sha256 (base32 "18l26s53yf5j9yh2zwq83n74qq4f2iq0cfblamsw4y9k35l1c108")))) - (build-system python-build-system) + (build-system pyproject-build-system) (arguments (list - #:phases - #~(modify-phases %standard-phases - (replace 'check - (lambda* (#:key tests? #:allow-other-keys) - (when tests? - (chdir "pydicom/tests") - (invoke "python3" "-m" "pytest" "-k" ;skip tests using web data - (string-append - "not test_jpeg_ls_pixel_data.py" - " and not test_gdcm_pixel_data.py" - " and not test_pillow_pixel_data.py" - " and not test_rle_pixel_data.py" - " and not Test_JPEG_LS_Lossless_transfer_syntax" - " and not test_numpy_pixel_data.py" - " and not test_data_manager.py" - " and not test_handler_util.py" - " and not test_overlay_np.py" - " and not test_encoders_pydicom.py" - " and not test_encaps.py" - " and not test_reading_ds_with_known_tags_with_UN_VR" - " and not TestDatasetOverlayArray" - " and not TestReader" - " and not test_filewriter.py")))))))) + #:test-flags + ;; Skip tests that require networking. + #~(list "-k" (string-append + "not test_jpeg_ls_pixel_data.py" + " and not test_gdcm_pixel_data.py" + " and not test_pillow_pixel_data.py" + " and not test_rle_pixel_data.py" + " and not Test_JPEG_LS_Lossless_transfer_syntax" + " and not test_numpy_pixel_data.py" + " and not test_data_manager.py" + " and not test_handler_util.py" + " and not test_overlay_np.py" + " and not test_encoders_pydicom.py" + " and not test_encaps.py" + " and not test_reading_ds_with_known_tags_with_UN_VR" + " and not TestDatasetOverlayArray" + " and not TestReader" + " and not test_filewriter.py")))) (native-inputs (list python-pytest)) (inputs (list gdcm libjpeg-turbo)) (propagated-inputs (list python-numpy python-pillow)) (home-page "https://github.com/pydicom/pydicom") (synopsis "Python library for reading and writing DICOM data") (description "@code{python-pydicom} is a Python library for reading and -writing DICOM medical imaging data. It lets developers read, modify and write -DICOM data in a pythonic way.") +writing DICOM medical imaging data. It can read, modify and write DICOM +data.") (license license:expat))) (define-public python-deepdish |