~ruther/guix-local

6efecf92362f81e50fce6063e28fc7ebb349c941 — Nicolas Graves 4 months ago 327931c
gnu: python-tifffile: Update to 2025.10.4.

* gnu/packages/python-xyz.scm (python-tifffile): Update to 2025.10.4.
[build-system]: Switch to pyproject-build-system.
[arguments, description]: Improve style.
[native-inputs]: Add python-setuptools.  Remove python-pytest, as
tests are not run.

Change-Id: Ica27197142bf7f80a7078cae1581b65a73a9b4b2
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
1 files changed, 10 insertions(+), 10 deletions(-)

M gnu/packages/python-xyz.scm
M gnu/packages/python-xyz.scm => gnu/packages/python-xyz.scm +10 -10
@@ 12748,27 12748,27 @@ regions of interest, geometric shapes, paths, text, etc for image overlays.")
(define-public python-tifffile
  (package
    (name "python-tifffile")
    (version "2023.12.9")
    (version "2025.10.4")
    (source
     (origin
       (method url-fetch)
       (uri (pypi-uri "tifffile" version))
       (sha256
        (base32
         "1f6d8qdlq0zlksfdhp1mhj9icpwhw4cz47r4i80m6r0a328xmlcx"))))
    (build-system python-build-system)
        (base32 "0f1ybmr2jz19gjg92p9vz3qib49m0x4ipxvrvjyfa6r1mcb7qhrf"))))
    (build-system pyproject-build-system)
    ;; Tests require lfdfiles, which depends on tifffile
    (arguments `(#:tests? #f))
    (arguments (list #:tests? #f))
    (propagated-inputs
     (list python-numpy))
    (native-inputs
     (list python-pytest))
     (list python-setuptools))
    (home-page "https://www.lfd.uci.edu/~gohlke/")
    (synopsis "Read and write TIFF(r) files")
    (description "This package lets you read image and metadata from many
bio-scientific formats such as plain TIFF, BigTIFF, OME-TIFF, STK, LSM, SGI,
NIH, ImageJ, MicroManager, MD GEL, and FluoView files.  It also lets you write
numpy arrays to TIFF, BigTIFF, and ImageJ hyperstack compatible files.")
    (description
     "This package lets you read image and metadata from many bio-scientific
formats such as plain TIFF, BigTIFF, OME-TIFF, STK, LSM, SGI,NIH, ImageJ,
MicroManager, MD GEL, and FluoView files.  It also lets you write numpy arrays
to TIFF, BigTIFF, and ImageJ hyperstack compatible files.")
    (license license:bsd-3)))

(define-public python-tiktoken