diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2023-06-20 18:37:26 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2023-06-20 23:40:40 +0200 |
commit | 9a7fc01b5c0c162bb716d24171143ddbe376ac60 (patch) | |
tree | 0aa121b62c746e0e7fa5ec9e57cb0794e6794710 /gnu | |
parent | 24fc0d506a046adb5331a5e2626830af0008406b (diff) | |
download | guix-9a7fc01b5c0c162bb716d24171143ddbe376ac60.tar.gz |
gnu: tensorflow: Drop package labels from propagated-inputs.
* gnu/packages/machine-learning.scm (tensorflow)[propagated-inputs]: Drop labels.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/machine-learning.scm | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/gnu/packages/machine-learning.scm b/gnu/packages/machine-learning.scm index 927b531cf2..ac2ac417e7 100644 --- a/gnu/packages/machine-learning.scm +++ b/gnu/packages/machine-learning.scm @@ -2794,15 +2794,15 @@ DESTINATION include/tensorflow/c FILES_MATCHING PATTERN \"*.h\")\n" m))))) ("swig" ,swig) ("unzip" ,unzip))) (propagated-inputs - `(("python-absl-py" ,python-absl-py) - ("python-astor" ,python-astor) - ("python-gast" ,python-gast) - ("python-grpcio" ,python-grpcio) - ("python-numpy" ,python-numpy) - ("python-protobuf" ,python-protobuf-3.6) - ("python-six" ,python-six) - ("python-termcolo" ,python-termcolor) - ("python-wheel" ,python-wheel))) + (list python-absl-py + python-astor + python-gast + python-grpcio + python-numpy + python-protobuf-3.6 + python-six + python-termcolor + python-wheel)) (inputs `(("c-ares" ,c-ares) ("eigen" ,eigen-for-tensorflow) |