~ruther/guix-local

f70954c1301e5ab4364bb10758d0d39d41fe7410 — Nicolas Graves 7 months ago a92d0a5
gnu: python-llfuse: Update to 1.5.1.

* gnu/packages/python-xyz.scm (python-llfuse): Update to 1.5.1.
[source]: Switch to git-fetch.
[build-system]: Switch to pyproject-build-system.
[arguments]<#:test-flags>: Disable failing test.
<#:phases>: Add phase 'build-cython.
[native-inputs]: Add python-cython, python-setuptools.
[home-page]: Update it.

Change-Id: I7da8047a8157e7e77433b13856b1bbff7c37b1b7
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
1 files changed, 23 insertions(+), 12 deletions(-)

M gnu/packages/python-xyz.scm
M gnu/packages/python-xyz.scm => gnu/packages/python-xyz.scm +23 -12
@@ 17469,22 17469,33 @@ third-party code.")
(define-public python-llfuse
  (package
    (name "python-llfuse")
    (version "1.4.4")
    (source (origin
              (method url-fetch)
              (uri (pypi-uri "llfuse" version))
              (sha256
               (base32
                "1jb4c9avvb0v3830xlbj1r9kj05i98vv6nq05105ppg57y7lq14j"))))
    (build-system python-build-system)
    (inputs
     (list fuse-2 attr))
    (version "1.5.1")
    (source
     (origin
       (method git-fetch)
       (uri (git-reference
             (url "https://github.com/python-llfuse/python-llfuse")
             (commit (string-append "release-" version))))
       (file-name (git-file-name name version))
       (sha256
        (base32 "16wsrg1py4gvcxfgsfkll73lfq62psc0hcqvs73az7s4b1pvyy62"))))
    (build-system pyproject-build-system)
    (arguments
     (list
      #:test-flags
      #~(list "-k" "not test_listdir")  ; requires /usr/bin access.
      #:phases
      #~(modify-phases %standard-phases
          (add-before 'build 'build-cython
            (lambda _
              (invoke "python" "setup.py" "build_cython"))))))
    (inputs (list fuse-2 attr))
    (native-inputs
     (list pkg-config python-pytest))
     (list pkg-config python-cython python-pytest python-setuptools))
    (synopsis "Python bindings for FUSE")
    (description
     "Python-LLFUSE is a set of Python bindings for the low level FUSE API.")
    (home-page "https://bitbucket.org/nikratio/python-llfuse/")
    (home-page "https://github.com/python-llfuse/python-llfuse")
    (license license:lgpl2.0+)))

(define-public python-msgpack