~ruther/guix-local

b353635cbec4bbf3ad9ba487355f344be4089e9b — Nicolas Graves 5 months ago 507c413
gnu: python-reflink: Update to 0.2.2.

* gnu/packages/python-xyz.scm (python-reflink): Update to 0.2.2.
[source]: Switch to git-fetch.
[build-system]: Switch to pyproject-build-system.
[native-inputs]: Remove python-pytest-runner, add python-setuptools.

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

M gnu/packages/python-xyz.scm
M gnu/packages/python-xyz.scm => gnu/packages/python-xyz.scm +11 -11
@@ 31955,21 31955,21 @@ implementation of JSON reference resolution.")
(define-public python-reflink
  (package
    (name "python-reflink")
    (version "0.2.1")
    (version "0.2.2")
    (source
     (origin
       (method url-fetch)
       (uri (pypi-uri "reflink" version))
       (method git-fetch)
       (uri (git-reference
             (url "https://gitlab.com/rubdos/pyreflink")
             (commit version)))
       (file-name (git-file-name name version))
       (sha256
        (base32
         "0fkf3sd958g9hvr3jwlhnhqqzrwxljrc3grsf3yknh94vf13a9f9"))))
    (build-system python-build-system)
        (base32 "1ch3n7m1f5nvx9i0jv1fj1i5w1jsl1ga8dxzixg71m34gf4kg3s6"))))
    (build-system pyproject-build-system)
    (arguments
     `(#:tests? #false)) ; almost all tests want to run mkfs.btrfs
    (propagated-inputs
     (list python-cffi))
    (native-inputs
     (list python-pytest python-pytest-runner))
     (list #:tests? #f)) ;almost all tests want to run mkfs.btrfs
    (propagated-inputs (list python-cffi))
    (native-inputs (list python-pytest python-setuptools))
    (home-page "https://gitlab.com/rubdos/pyreflink")
    (synopsis "Python wrapper around reflink system call")
    (description