mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-27 07:14:52 +00:00
Merge pull request #310624 from Pandapip1/init-pythonpackages-optree
pythonPackages.optree: init 0.11.0
This commit is contained in:
commit
6432027fad
@ -1,6 +1,6 @@
|
||||
{ lib, buildPythonPackage, fetchPypi
|
||||
, pytest, pytest-cov, pytest-xdist
|
||||
, six, numpy, scipy, pyyaml, h5py
|
||||
, six, numpy, scipy, pyyaml, h5py, optree
|
||||
, keras-applications, keras-preprocessing
|
||||
}:
|
||||
|
||||
|
60
pkgs/development/python-modules/optree/default.nix
Normal file
60
pkgs/development/python-modules/optree/default.nix
Normal file
@ -0,0 +1,60 @@
|
||||
{ stdenv
|
||||
, buildPythonPackage
|
||||
, fetchFromGitHub
|
||||
, pythonOlder
|
||||
, lib
|
||||
, cmake
|
||||
, setuptools
|
||||
, typing-extensions
|
||||
, pybind11
|
||||
, pytestCheckHook
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "optree";
|
||||
version = "0.11.0";
|
||||
pyproject = true;
|
||||
|
||||
disabled = pythonOlder "3.7";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "metaopt";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
hash = "sha256-VnnnEoXkYJO+S7baH+JZvsW18Tk3TiY9+Cd230OlZWo=";
|
||||
};
|
||||
|
||||
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 = with lib; {
|
||||
homepage = "https://github.com/metaopt/optree";
|
||||
changelog = "https://github.com/metaopt/optree/releases/tag/v${version}";
|
||||
description = "Optimized PyTree Utilities";
|
||||
maintainers = with maintainers; [ pandapip1 ];
|
||||
license = licenses.asl20;
|
||||
};
|
||||
}
|
@ -9283,6 +9283,8 @@ self: super: with self; {
|
||||
|
||||
optimum = callPackage ../development/python-modules/optimum { };
|
||||
|
||||
optree = callPackage ../development/python-modules/optree { };
|
||||
|
||||
optuna = callPackage ../development/python-modules/optuna { };
|
||||
|
||||
opuslib = callPackage ../development/python-modules/opuslib { };
|
||||
|
Loading…
Reference in New Issue
Block a user