blob: 632a3aefb8d907ae20e380f77deca0ae600042f5 (
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
{
lib,
buildPythonPackage,
fetchPypi,
pytestCheckHook,
pkg-config,
setuptools,
libjpeg,
libpng,
libtiff,
libwebp,
numpy,
}:
buildPythonPackage rec {
pname = "imread";
version = "0.7.6";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-ULPXCJyGJQTCKyVu9R/kWFGzRhbbFMDr/FU2AByZYBU=";
};
build-system = [ setuptools ];
nativeBuildInputs = [ pkg-config ];
buildInputs = [
libjpeg
libpng
libtiff
libwebp
];
dependencies = [ numpy ];
nativeCheckInputs = [ pytestCheckHook ];
pytestFlagsArray = [
# verbose build outputs needed to debug hard-to-reproduce hydra failures
"-v"
"--pyargs"
"imread"
];
pythonImportsCheck = [ "imread" ];
preCheck = ''
cd $TMPDIR
export HOME=$TMPDIR
export OMP_NUM_THREADS=1
'';
meta = with lib; {
description = "Python package to load images as numpy arrays";
homepage = "https://imread.readthedocs.io/";
changelog = "https://github.com/luispedro/imread/blob/v${version}/ChangeLog";
maintainers = with maintainers; [ luispedro ];
license = licenses.mit;
platforms = platforms.unix;
};
}
|