summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/connected-components-3d/default.nix
blob: cd5e230deea61f15eee8f832b7055489b267178e (plain)
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
50
51
52
53
54
55
56
57
58
59
60
61
62
{
  lib,
  buildPythonPackage,
  fetchFromGitHub,
  setuptools,
  cython,
  numpy,
  pbr,
  fastremap,
  pytestCheckHook,
  scipy,
}:

buildPythonPackage rec {
  pname = "connected-components-3d";
  version = "3.22.0";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "seung-lab";
    repo = "connected-components-3d";
    tag = version;
    hash = "sha256-txgQY9k96hFKLrKVLE6ldPdNbSnKOk2FIMrHkRQXlPk=";
  };

  build-system = [
    cython
    numpy
    pbr
    setuptools
  ];

  dependencies = [ numpy ];

  optional-dependencies = {
    stack = [
      # crackle-codec # not in nixpkgs
      fastremap
    ];
  };

  nativeCheckInputs = [
    pytestCheckHook
    scipy
  ]
  ++ optional-dependencies.stack;

  disabledTests = [
    # requires optional dependency crackle-codec (not in nixpkgs)
    "test_connected_components_stack"
  ];

  pythonImportsCheck = [ "cc3d" ];

  meta = {
    description = "Connected components on discrete and continuous multilabel 3D & 2D images";
    homepage = "https://github.com/seung-lab/connected-components-3d";
    changelog = "https://github.com/seung-lab/connected-components-3d/releases/tag/${version}";
    license = lib.licenses.lgpl3Plus;
    maintainers = with lib.maintainers; [ bcdarwin ];
  };
}