diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2024-01-07 23:58:08 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2024-01-16 12:44:34 +0100 |
commit | 299455fef23fe878edfdede7bde254df067e623a (patch) | |
tree | 7f67860d5b51ecface54810759531c12039ab37b | |
parent | accd091fffcfd7a1d9353311a455783f09519428 (diff) | |
download | guix-299455fef23fe878edfdede7bde254df067e623a.tar guix-299455fef23fe878edfdede7bde254df067e623a.tar.gz |
gnu: python-tifffile: Update to 2023.12.9.
* gnu/packages/python-xyz.scm (python-tifffile): Update to 2023.12.9.
[propagated-inputs]: Remove python-imagecodecs.
[native-inputs]: Add python-pytest.
Change-Id: I2567bef390e286ed4399cc67b80a9df503f53c0a
-rw-r--r-- | gnu/packages/python-xyz.scm | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index d4b2f18bb0..df21076493 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -9485,19 +9485,21 @@ regions of interest, geometric shapes, paths, text, etc for image overlays.") (define-public python-tifffile (package (name "python-tifffile") - (version "2021.4.8") + (version "2023.12.9") (source (origin (method url-fetch) (uri (pypi-uri "tifffile" version)) (sha256 (base32 - "16r0hw7shka1bqf28bv198lj2jhf2r9gy3s5zv4nf5cfsfm8pajm")))) + "1f6d8qdlq0zlksfdhp1mhj9icpwhw4cz47r4i80m6r0a328xmlcx")))) (build-system python-build-system) ;; Tests require lfdfiles, which depends on tifffile (arguments `(#:tests? #f)) (propagated-inputs - (list python-numpy python-imagecodecs)) + (list python-numpy)) + (native-inputs + (list python-pytest)) (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 |