From b353635cbec4bbf3ad9ba487355f344be4089e9b Mon Sep 17 00:00:00 2001 From: Nicolas Graves Date: Fri, 21 Nov 2025 19:12:28 +0100 Subject: [PATCH] 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 --- gnu/packages/python-xyz.scm | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 81815ab1f4c795f0553ed520be69a2482e8f017e..d209bfe46f60f84bcce3f6c9d7031ed6eacbacad 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -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