about summary refs log tree commit diff
path: root/pkgs/development/python-modules/napari-console/default.nix
blob: 07b8d735736a1c1e46fb0a60de7ae53f69199bb5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
  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 ];
  };
}