python3Packages.functorch: add pybind11 as dependency

This commit is contained in:
Jonathan Ringer 2022-06-15 11:15:37 -07:00 committed by Jonathan Ringer
parent 605ce577fa
commit 1f94955861

View File

@ -6,6 +6,7 @@
, pytestCheckHook
, python
, pytorch
, pybind11
, which
}:
@ -29,6 +30,10 @@ buildPythonPackage rec {
which
];
buildInputs = [
pybind11
];
preCheck = ''
rm -rf functorch/
'';