python3Packages.functorch: add pybind11 as dependency

main
Jonathan Ringer 2 years ago committed by Jonathan Ringer
parent 605ce577fa
commit 1f94955861
  1. 5
      pkgs/development/python-modules/functorch/default.nix

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

Loading…
Cancel
Save