From a9faf1b9efee58458e0174e696471a7db3ff97ed Mon Sep 17 00:00:00 2001 From: Someone Serge Date: Tue, 21 Mar 2023 03:34:20 +0200 Subject: [PATCH] python3Packages.torch: add missing install_requires --- pkgs/development/python-modules/torch/default.nix | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/pkgs/development/python-modules/torch/default.nix b/pkgs/development/python-modules/torch/default.nix index 3373c3d3d3b2..9f701493f07a 100644 --- a/pkgs/development/python-modules/torch/default.nix +++ b/pkgs/development/python-modules/torch/default.nix @@ -12,7 +12,10 @@ Accelerate, CoreServices, libobjc, # Propagated build inputs + filelock, sympy, + networkx, + jinja2, numpy, pyyaml, cffi, click, typing-extensions, # Unit tests @@ -285,8 +288,14 @@ in buildPythonPackage rec { click numpy pyyaml + + # From install_requires: + filelock typing-extensions sympy + networkx + jinja2 + # the following are required for tensorboard support pillow six future tensorboard protobuf ] ++ lib.optionals MPISupport [ mpi ]