guix_mirror_bot pushed a commit to branch master in repository guix. commit 7556a29735c78d2d3cb8c2386d08189c573af0c9 Author: Ayan Das <bv...@riseup.net> AuthorDate: Wed Aug 20 09:11:29 2025 +0530
gnu: python-pytorch-geometric: Add openssl to native-inputs. Fixes test failures where PyTorch's inductor was unable to find openssl for checksumming during compilation. * gnu/packages/machine-learning.scm (python-pytorch-geometric) [native-inputs]: Add openssl. Change-Id: Ib5c6bcd82c38acccc5af546ae93404d8d36aa157 Reviewed-by: David Elsing <david.els...@posteo.net> @dtelsing Signed-off-by: Sharlatan Hellseher <sharlata...@gmail.com> --- gnu/packages/machine-learning.scm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gnu/packages/machine-learning.scm b/gnu/packages/machine-learning.scm index d231c98beb..ed3ec4da34 100644 --- a/gnu/packages/machine-learning.scm +++ b/gnu/packages/machine-learning.scm @@ -5537,7 +5537,8 @@ Note: currently this package does not provide GPU support.") python-tqdm python-xxhash)) (native-inputs - (list python-flit-core-next + (list openssl + python-flit-core-next python-pytest python-pytest-cov)) (home-page "https://pyg.org")