depot/third_party/nixpkgs/pkgs/development/python-modules/optree/default.nix
Default email 472aeafc57 Project import generated by Copybara.
GitOrigin-RevId: c31898adf5a8ed202ce5bea9f347b1c6871f32d1
2024-10-04 18:56:33 +02:00

54 lines
1.1 KiB
Nix

{
buildPythonPackage,
fetchFromGitHub,
pythonOlder,
lib,
cmake,
setuptools,
typing-extensions,
pybind11,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "optree";
version = "0.13.0";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "metaopt";
repo = "optree";
rev = "refs/tags/v${version}";
hash = "sha256-HuzfQ1arAF/DbJd9MF0jAxfzWvOHtAfkEMUF+aPfaII=";
};
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"
];
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 ];
};
}