15 buildPythonPackage rec {
17 version = "2024.9.20";
20 disabled = pythonOlder "3.9";
23 inherit pname version;
24 hash = "sha256-P7874vmVpwUaiuBaS+cMlvwHifIu1vHEEEyXPPaKZAs=";
27 build-system = [ setuptools ];
29 dependencies = [ numpy ];
40 # Test require network access
43 # Test file is missing
44 "test_write_predictor"
45 "test_issue_imagej_hyperstack_arg"
46 "test_issue_description_overwrite"
49 "test_write_imagej_raw"
50 # https://github.com/cgohlke/tifffile/issues/142
51 "test_func_bitorder_decode"
52 # Test file is missing
53 "test_issue_invalid_predictor"
56 pythonImportsCheck = [ "tifffile" ];
58 # flaky, often killed due to OOM or timeout
62 description = "Read and write image data from and to TIFF files";
63 homepage = "https://github.com/cgohlke/tifffile/";
64 changelog = "https://github.com/cgohlke/tifffile/blob/v${version}/CHANGES.rst";
65 license = licenses.bsd3;
66 maintainers = with maintainers; [ lebastr ];