From 1c5e70d28c2e62cf65b9eb75f344047973aaf6c4 Mon Sep 17 00:00:00 2001 From: Efraim Flashner Date: Wed, 31 Dec 2025 12:37:03 +0200 Subject: [PATCH] gnu: python-userspacefs: Hardcode location of libfuse. * gnu/packages/python-xyz.scm (python-userspacefs)[arguments]: Add a phase to hardcode the location of libfuse. [inputs]: Add fuse-2. Change-Id: Ib991967a29daa759ff0e3f2682c2b9f860b8cb3c --- gnu/packages/python-xyz.scm | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 96c65b04e8065d6921d8d8ce4ff2e06edae9be01..508eff5f19aa20bbd5973a9ea543bc65211b328a 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -39877,7 +39877,18 @@ parsing (browser/HTTP) user agent strings.") (sha256 (base32 "0lfzgijza3p4wbrhlf8pzj89j7caj8x6aij78d4izppvq4kfjqs6")))) (build-system pyproject-build-system) - (arguments (list #:tests? #f)) ;no tests + (arguments + (list #:tests? #f ;no tests + #:phases + #~(modify-phases %standard-phases + (add-after 'unpack 'hardcode-libfuse + (lambda* (#:key inputs #:allow-other-keys) + (substitute* "userspacefs/fusepy.py" + (("^_libfuse_path.*") + (string-append "_libfuse_path = '" + (search-input-file inputs "lib/libfuse.so") + "'\n")))))))) + (inputs (list fuse-2)) (native-inputs (list python-setuptools)) (propagated-inputs (list python-aiohttp python-typing-extensions)) (home-page "https://thelig.ht/code/userspacefs/readme.html")