blob: 6ff3735465076939857bf304c8082f130493a91f (
about) (
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
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
openslide,
pillow,
pytestCheckHook,
pythonOlder,
}:
buildPythonPackage rec {
pname = "openslide";
version = "1.4.1";
pyproject = true;
disabled = pythonOlder "3.9";
src = fetchFromGitHub {
owner = "openslide";
repo = "openslide-python";
tag = "v${version}";
hash = "sha256-V4vOeeXGng1zunSLbIfqbGePNkWqf0HEOyv40OVPw1Y=";
};
postPatch = ''
substituteInPlace openslide/lowlevel.py \
--replace-fail "return cdll.LoadLibrary(names[0])" "return cdll.LoadLibrary(f'${lib.getLib openslide}/lib/{names[0]}')"
'';
build-system = [ setuptools ];
dependencies = [ pillow ];
pythonImportsCheck = [ "openslide" ];
nativeCheckInputs = [ pytestCheckHook ];
preCheck = ''rm -rf openslide/'';
meta = {
description = "Python bindings to the OpenSlide library for reading whole-slide microscopy images";
homepage = "https://github.com/openslide/openslide-python";
changelog = "https://github.com/openslide/openslide-python/blob/${src.tag}/CHANGELOG.md";
license = lib.licenses.lgpl21Only;
maintainers = with lib.maintainers; [ bcdarwin ];
};
}
|