Skip to content
Snippets Groups Projects
Unverified Commit 09f52782 authored by Ricardo Wurmus's avatar Ricardo Wurmus
Browse files

gnu: Add python-tifffile.

* gnu/packages/python-xyz.scm (python-tifffile): New variable.
parent 978d11f9
No related branches found
No related tags found
No related merge requests found
......@@ -5342,6 +5342,32 @@ (define-public python-roifile
regions of interest, geometric shapes, paths, text, etc for image overlays.")
(license license:bsd-3)))
 
(define-public python-tifffile
(package
(name "python-tifffile")
(version "2020.6.3")
(source
(origin
(method url-fetch)
(uri (pypi-uri "tifffile" version))
(sha256
(base32
"0xv3ynkbrsibqvx7250075idb7wm3canjd6lx2nzf3cbp6l07577"))))
(build-system python-build-system)
;; Tests require lfdfiles, which depends on tifffile
(arguments `(#:tests? #f))
(propagated-inputs
`(("python-numpy" ,python-numpy)
;;("python-lfdfiles" ,python-lfdfiles)
("python-roifile" ,python-roifile)))
(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.")
(license license:bsd-3)))
(define-public python-pycparser
(package
(name "python-pycparser")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment