summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorNicolas Graves <ngraves@ngraves.fr>2025-10-14 17:12:58 +0200
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-10-15 14:23:15 +0100
commit5f6cbf433b9c166dd60d4b6f285ef086b6c14c47 (patch)
tree0db26029e973b06fa99f97c4c31d3a1f1412c7c2 /gnu
parent6efecf92362f81e50fce6063e28fc7ebb349c941 (diff)
gnu: python-lfdfiles: Update to 2025.9.17.
* gnu/packages/python-xyz.scm (python-lfdfiles): Update to 2025.9.17. [source, propagated-inputs]: Improve style. [build-system]: Switch to pyproject-build-system. [native-inputs]: Add python-setuptools. Change-Id: I728400b74276b036d021c25b6c25c92709f7776c Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/python-xyz.scm24
1 files changed, 10 insertions, 14 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index caec8fd6058..8b34753e7b2 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -12824,26 +12824,22 @@ to TIFF, BigTIFF, and ImageJ hyperstack compatible files.")
(define-public python-lfdfiles
(package
(name "python-lfdfiles")
- (version "2021.2.22")
+ (version "2025.9.17")
(source
(origin
(method url-fetch)
(uri (pypi-uri "lfdfiles" version))
(sha256
- (base32
- "12fxm4v805dgjrih7x6jnl1wd7y7jw1rkhjs3d4am8s6qk1cbar2"))
- (modules '((guix build utils)))
- (snippet
- '(begin
- ;; Delete pre-generated Cython files.
- (for-each delete-file (find-files "lfdfiles" "_.*\\.c$"))
- #t))))
- (build-system python-build-system)
+ (base32 "0b363vv146icsn86gxc04grq2d5r7xzzabr03xsc7aq9wybgvgqp"))
+ (modules '((guix build utils)))
+ (snippet
+ ;; Delete pre-generated Cython files.
+ #~(for-each delete-file (find-files "lfdfiles" "_.*\\.c$")))))
+ (build-system pyproject-build-system)
(arguments
- `(#:tests? #f)) ; No tests exist, despite a test dependency on pytest.
- (propagated-inputs
- (list python-click python-numpy python-tifffile))
- (native-inputs (list python-cython))
+ (list #:tests? #f)) ; No tests, despite a test dependency on pytest.
+ (native-inputs (list python-setuptools))
+ (propagated-inputs (list python-click python-numpy python-tifffile))
(home-page "https://www.lfd.uci.edu/~gohlke/")
(synopsis "Work with LFD data files")
(description