blob: f27db5e912f39cb8530485465dbf9f9a4915f2cd (
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
|
{
buildPythonPackage,
fetchFromGitHub,
lib,
cmake,
setuptools,
typing-extensions,
pybind11,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "optree";
version = "0.17.0";
pyproject = true;
src = fetchFromGitHub {
owner = "metaopt";
repo = "optree";
tag = "v${version}";
hash = "sha256-4ZkUdGF+Fauy6KWbyrGQ684Ay5XlFT2S2I9lv/1KeWs=";
};
dontUseCmakeConfigure = true;
propagatedBuildInputs = [ typing-extensions ];
nativeBuildInputs = [
setuptools
pybind11
cmake
];
nativeCheckInputs = [ pytestCheckHook ];
# prevent import failures from pytest
preCheck = ''
rm -r optree
'';
disabledTests = [
# Fails because the 'test_treespec' module can't be found
"test_treespec_pickle_missing_registration"
# optree import during tests raises CalledProcessError
"test_warn_deprecated_import"
"test_import_no_warnings"
"test_treespec_construct"
];
pythonImportsCheck = [ "optree" ];
meta = {
description = "Optimized PyTree Utilities";
homepage = "https://github.com/metaopt/optree";
changelog = "https://github.com/metaopt/optree/releases";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ pandapip1 ];
};
}
|