bcb2f287e1
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
112 lines
1.8 KiB
Nix
112 lines
1.8 KiB
Nix
{
|
|
lib,
|
|
app-model,
|
|
appdirs,
|
|
buildPythonPackage,
|
|
cachey,
|
|
certifi,
|
|
dask,
|
|
docstring-parser,
|
|
fetchFromGitHub,
|
|
imageio,
|
|
jsonschema,
|
|
magicgui,
|
|
mkDerivationWith,
|
|
napari-console,
|
|
napari-npe2,
|
|
napari-svg,
|
|
numpydoc,
|
|
pandas,
|
|
pillow,
|
|
pint,
|
|
psutil,
|
|
pydantic,
|
|
pyopengl,
|
|
pythonOlder,
|
|
pyyaml,
|
|
scikit-image,
|
|
scipy,
|
|
setuptools,
|
|
setuptools-scm,
|
|
superqt,
|
|
tifffile,
|
|
toolz,
|
|
tqdm,
|
|
typing-extensions,
|
|
vispy,
|
|
wrapQtAppsHook,
|
|
wrapt,
|
|
}:
|
|
|
|
mkDerivationWith buildPythonPackage rec {
|
|
pname = "napari";
|
|
version = "0.4.19.post1";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.9";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "napari";
|
|
repo = "napari";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-qw5WdFPySNkmm+dNu+hqsmr+csBpHnSl9bMpb4nKEqI=";
|
|
};
|
|
|
|
postPatch = ''
|
|
substituteInPlace setup.cfg \
|
|
--replace-fail "scikit-image[data]>=0.19.1" "scikit-image"
|
|
'';
|
|
|
|
build-system = [
|
|
setuptools
|
|
setuptools-scm
|
|
];
|
|
|
|
nativeBuildInputs = [ wrapQtAppsHook ];
|
|
|
|
propagatedBuildInputs = [
|
|
app-model
|
|
appdirs
|
|
cachey
|
|
certifi
|
|
dask
|
|
docstring-parser
|
|
imageio
|
|
jsonschema
|
|
magicgui
|
|
napari-console
|
|
napari-npe2
|
|
napari-svg
|
|
numpydoc
|
|
pandas
|
|
pillow
|
|
pint
|
|
psutil
|
|
pydantic
|
|
pyopengl
|
|
pyyaml
|
|
scikit-image
|
|
scipy
|
|
superqt
|
|
tifffile
|
|
toolz
|
|
tqdm
|
|
typing-extensions
|
|
vispy
|
|
wrapt
|
|
] ++ dask.optional-dependencies.array;
|
|
|
|
dontUseSetuptoolsCheck = true;
|
|
|
|
postFixup = ''
|
|
wrapQtApp $out/bin/napari
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Fast, interactive, multi-dimensional image viewer";
|
|
homepage = "https://github.com/napari/napari";
|
|
changelog = "https://github.com/napari/napari/releases/tag/v${version}";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ SomeoneSerge ];
|
|
};
|
|
}
|