mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: nnpack: Depend on python-peachpy only for x86_64.
* gnu/packages/machine-learning.scm (nnpack)[native-inputs]: Provide python-peachpy only when 'target-x86-64?'.
This commit is contained in:
parent
e5bf0cfa97
commit
cf468ebd38
1 changed files with 3 additions and 1 deletions
|
@ -4045,7 +4045,9 @@ and Darknet.")
|
||||||
pthreadpool
|
pthreadpool
|
||||||
googletest))
|
googletest))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list python python-peachpy python-six))
|
`(,python
|
||||||
|
,@(if (target-x86-64?) (list python-peachpy) '())
|
||||||
|
,python-six))
|
||||||
;; Supported for Linux.
|
;; Supported for Linux.
|
||||||
(supported-systems '("x86_64-linux" "armhf-linux" "aarch64-linux"))
|
(supported-systems '("x86_64-linux" "armhf-linux" "aarch64-linux"))
|
||||||
(license license:bsd-2))))
|
(license license:bsd-2))))
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue