diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2026-01-01 20:09:38 +0000 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2026-01-01 20:11:08 +0000 |
| commit | ac1d57332a53592b2e2f33d3fcfa2593cf0759fe (patch) | |
| tree | b3fb2fffc28665757fee7cfaa1b6d02ec6b12e83 /gnu | |
| parent | ab06c318d05c5af140ea8c5c9dd26f69bc167e55 (diff) | |
gnu: python-pyfuse3: Update to 3.4.1.
* gnu/packages/python-xyz.scm (python-pyfuse3): Update to 3.4.1.
[build-system]: Switch to pyproject-build-system.
[propagated-inputs]: Remove python-pytest-trio; add python-trio.
[native-inputs]: Add python-cython, python-pytest, python-setuptools, and
python-setuptools-scm.
Change-Id: I6f4846bb90a0fb578dbadf3c4021a0458428bfcb
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/python-xyz.scm | 24 |
1 files changed, 18 insertions, 6 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 9b8d680e12..3a39be9ab7 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -34521,17 +34521,29 @@ Psycopg 2 is both Unicode and Python 3 friendly.") (define-public python-pyfuse3 (package (name "python-pyfuse3") - (version "3.3.0") + (version "3.4.1") (source (origin (method url-fetch) (uri (pypi-uri "pyfuse3" version)) (sha256 - (base32 "1gbkwmk7gpyy70cqj9226qvwrx13xlwxfz86l86n5ybr4i0zwc9b")))) - (build-system python-build-system) - (native-inputs (list pkg-config)) - (inputs (list fuse)) - (propagated-inputs (list python-pytest-trio)) + (base32 "02cjnkhn6rf19bcp5g6spq59fhdg8izhwv2jgxgbvkabjigrqbv0")))) + (build-system pyproject-build-system) + (arguments + (list + #:test-flags + ;; FileNotFoundError: [Errno 2] No such file or directory: '/usr/bin' + #~(list "--deselect=test/test_api.py::test_listdir"))) + (native-inputs + (list pkg-config + python-cython + python-pytest + python-setuptools + python-setuptools-scm)) + (inputs + (list fuse)) + (propagated-inputs + (list python-trio)) (home-page "https://github.com/libfuse/pyfuse3") (synopsis "Python bindings to FUSE 3") (description "This package provides Python 3 bindings for libfuse 3 with |
