blob: 96f3bb4f4aca70ef1cb94ce4f074f5c50e677ed9 (
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
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools-scm,
}:
buildPythonPackage rec {
pname = "napari-plugin-engine";
version = "0.2.0";
format = "setuptools";
src = fetchFromGitHub {
owner = "napari";
repo = "napari-plugin-engine";
tag = "v${version}";
hash = "sha256-cKpCAEYYRq3UPje7REjzhEe1J9mmrtXs8TBnxWukcNE=";
};
nativeBuildInputs = [ setuptools-scm ];
# Circular dependency: napari
doCheck = false;
pythonImportsCheck = [ "napari_plugin_engine" ];
meta = {
description = "First generation napari plugin engine";
homepage = "https://github.com/napari/napari-plugin-engine";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ SomeoneSerge ];
};
}
|