blob: 81ea8ccc691ab714765b37fc06410e0260bf817d (
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
49
50
51
52
53
54
55
56
57
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
rustPlatform,
# tests
pytest-asyncio,
pytestCheckHook,
python-dotenv,
}:
buildPythonPackage rec {
pname = "opendal";
version = "0.46.0";
pyproject = true;
src = fetchFromGitHub {
owner = "apache";
repo = "opendal";
tag = "v${version}";
hash = "sha256-OQGpz6o4R0Yp+1vAgFtik/l7wvHwJNcB1BhZLk+BFPg=";
};
sourceRoot = "${src.name}/bindings/python";
postPatch = ''
ln -s ${./Cargo.lock} Cargo.lock
'';
cargoDeps = rustPlatform.importCargoLock {
lockFile = ./Cargo.lock;
};
env = {
PYO3_USE_ABI3_FORWARD_COMPATIBILITY = 1;
};
build-system = [
rustPlatform.cargoSetupHook
rustPlatform.maturinBuildHook
];
pythonImportsCheck = [ "opendal" ];
nativeCheckInputs = [
pytest-asyncio
pytestCheckHook
python-dotenv
];
meta = {
description = "native Python binding for Apache OpenDAL";
homepage = "https://github.com/apache/opendal/blob/main/bindings/python";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ GaetanLepage ];
};
}
|