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
63
64
65
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
numba,
numpy,
pillow,
pytestCheckHook,
scipy,
setuptools,
config,
cudaSupport ? config.cudaSupport,
cupy,
pyopencl,
}:
buildPythonPackage rec {
pname = "pymatting";
version = "1.1.13";
pyproject = true;
src = fetchFromGitHub {
owner = "pymatting";
repo = "pymatting";
tag = "v${version}";
hash = "sha256-AzdhRZgcT+gfLPZYKJLQUW7uLyXoRy6SP2raHWd9XUY=";
};
build-system = [ setuptools ];
dependencies = [
numba
numpy
pillow
scipy
]
++ lib.optionals cudaSupport [
cupy
pyopencl
];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "pymatting" ];
disabledTests = [
# no access to input data set
# see: https://github.com/pymatting/pymatting/blob/master/tests/download_images.py
"test_alpha"
"test_laplacians"
"test_preconditioners"
"test_lkm"
];
# pyopencl._cl.LogicError: clGetPlatformIDs failed: PLATFORM_NOT_FOUND_KHR
disabledTestPaths = lib.optional cudaSupport "tests/test_foreground.py";
meta = {
description = "Python library for alpha matting";
homepage = "https://github.com/pymatting/pymatting";
changelog = "https://github.com/pymatting/pymatting/blob/v${version}/CHANGELOG.md";
license = lib.licenses.mit;
maintainers = [ ];
};
}
|