5c370c0b2a
GitOrigin-RevId: 33d1e753c82ffc557b4a585c77de43d4c922ebb5
49 lines
919 B
Nix
49 lines
919 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
imageio,
|
|
ipykernel,
|
|
ipython,
|
|
napari-plugin-engine,
|
|
pythonOlder,
|
|
qtconsole,
|
|
qtpy,
|
|
setuptools-scm,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "napari-console";
|
|
version = "0.0.9";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.8";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "napari";
|
|
repo = "napari-console";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-3gOfiPx06G5c4eaLQ5kP45hUr6yw91esznJFacpO66Q=";
|
|
};
|
|
|
|
build-system = [ setuptools-scm ];
|
|
|
|
dependencies = [
|
|
ipykernel
|
|
ipython
|
|
qtconsole
|
|
qtpy
|
|
];
|
|
|
|
# Circular dependency: napari
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [ "napari_console" ];
|
|
|
|
meta = with lib; {
|
|
description = "A plugin that adds a console to napari";
|
|
homepage = "https://github.com/napari/napari-console";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ SomeoneSerge ];
|
|
};
|
|
}
|