39 mkDerivationWith buildPythonPackage rec {
44 disabled = pythonOlder "3.8";
46 src = fetchFromGitHub {
49 rev = "refs/tags/v${version}";
50 hash = "sha256-xF0DYK+226MZpB050IukNvTg2iHMQAIZW0serKRJd/0=";
53 SETUPTOOLS_SCM_PRETEND_VERSION = version;
56 substituteInPlace setup.cfg \
57 --replace "scikit-image>=0.19.1" "scikit-image" \
58 --replace "sphinx<5" "sphinx" \
59 --replace "vispy>=0.11.0,<0.12" "vispy"
67 propagatedBuildInputs = [
97 ] ++ dask.optional-dependencies.array;
99 dontUseSetuptoolsCheck = true;
102 wrapQtApp $out/bin/napari
106 description = "A fast, interactive, multi-dimensional image viewer";
107 homepage = "https://github.com/napari/napari";
108 changelog = "https://github.com/napari/napari/releases/tag/v${version}";
109 license = licenses.bsd3;
110 maintainers = with maintainers; [ SomeoneSerge ];