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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
|
{ lib
, buildPythonPackage
, fetchFromGitHub
# build-system
, cmake
, cython
, ninja
, oldest-supported-numpy
, pkg-config
, scikit-build
, setuptools
, wheel
# c library
, c-blosc2
# propagates
, msgpack
, ndindex
, numpy
, py-cpuinfo
, rich
# tests
, psutil
, pytestCheckHook
, torch
}:
buildPythonPackage rec {
pname = "blosc2";
version = "2.5.1";
pyproject = true;
src = fetchFromGitHub {
owner = "Blosc";
repo = "python-blosc2";
rev = "refs/tags/v${version}";
hash = "sha256-yBgnNJU1q+FktIkpQn74LuRP19Ta/fNC60Z8TxzlWPk=";
};
postPatch = ''
substituteInPlace requirements-runtime.txt \
--replace "pytest" ""
'';
nativeBuildInputs = [
cmake
cython
ninja
oldest-supported-numpy
pkg-config
scikit-build
setuptools
wheel
];
buildInputs = [ c-blosc2 ];
dontUseCmakeConfigure = true;
env.CMAKE_ARGS = "-DUSE_SYSTEM_BLOSC2:BOOL=YES";
propagatedBuildInputs = [
msgpack
ndindex
numpy
py-cpuinfo
rich
];
nativeCheckInputs = [
psutil
pytestCheckHook
torch
];
passthru.c-blosc2 = c-blosc2;
meta = with lib; {
description = "Python wrapper for the extremely fast Blosc2 compression library";
homepage = "https://github.com/Blosc/python-blosc2";
changelog = "https://github.com/Blosc/python-blosc2/releases/tag/v${version}";
license = licenses.bsd3;
maintainers = with maintainers; [ ris ];
};
}
|