mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-30 10:53:11 +00:00
33afbf39f6
checkInputs used to be added to nativeBuildInputs. Now we have nativeCheckInputs to do that instead. Doing this treewide change allows to keep hashes identical to before the introduction of nativeCheckInputs.
63 lines
1.1 KiB
Nix
63 lines
1.1 KiB
Nix
{ lib
|
|
, buildPythonPackage
|
|
, dask
|
|
, fetchPypi
|
|
, fsspec
|
|
, lxml
|
|
, numpy
|
|
, pytestCheckHook
|
|
, pythonOlder
|
|
, zarr
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "tifffile";
|
|
version = "2022.10.10";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-ULYbqUO4ZtGRKVvDigAZHJ/asj7OBjVEx/GiZOP2qo4=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
numpy
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
dask
|
|
fsspec
|
|
lxml
|
|
pytestCheckHook
|
|
zarr
|
|
];
|
|
|
|
disabledTests = [
|
|
# Test require network access
|
|
"test_class_omexml"
|
|
"test_write_ome"
|
|
# Test file is missing
|
|
"test_write_predictor"
|
|
"test_issue_imagej_hyperstack_arg"
|
|
"test_issue_description_overwrite"
|
|
# AssertionError
|
|
"test_write_bigtiff"
|
|
"test_write_imagej_raw"
|
|
# https://github.com/cgohlke/tifffile/issues/142
|
|
"test_func_bitorder_decode"
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"tifffile"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Read and write image data from and to TIFF files";
|
|
homepage = "https://github.com/cgohlke/tifffile/";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ lebastr ];
|
|
};
|
|
}
|