gnu: python-fs: Remove indirect dependency on Rust when unsupported.

This allows to build font-abattis-cantarell on aarch64-linux.

* gnu/packages/python-xyz.scm (python-fs)[arguments]: Add #:tests?.
[native-inputs]: Turn into the empty list when cross-compiling or when
PYTHON-PYFTPDLIB is not supported.
This commit is contained in:
Ludovic Courtès 2023-05-04 23:06:38 +02:00
parent 9e95be01d9
commit dc5430c9dc
No known key found for this signature in database
GPG key ID: 090B11993D9AEBB5

View file

@ -12287,6 +12287,8 @@ (define-public python-fs
(build-system python-build-system)
(arguments
(list
#:tests? (and (not (%current-target-system))
(->bool (this-package-native-input "python-pytest")))
#:phases #~(modify-phases %standard-phases
(replace 'check
(lambda* (#:key tests? #:allow-other-keys)
@ -12296,7 +12298,14 @@ (define-public python-fs
(propagated-inputs
(list python-appdirs python-pytz python-six))
(native-inputs
(list python-mock python-parameterized python-pyftpdlib python-pytest))
;; 'python-pyftpdlib' is needed for tests but it indirectly depends Rust,
;; which is currently unavailable on aarch64-linux. Remove all the test
;; dependencies in that case.
(if (and (not (%current-target-system))
(supported-package? python-pyftpdlib))
(list python-mock python-parameterized python-pyftpdlib
python-pytest)
'()))
(home-page "https://github.com/PyFilesystem/pyfilesystem2/")
(synopsis "File system abstraction layer for Python")
(description "PyFilesystem's @code{FS} object is a file system abstraction