diff options
| author | Nicolas Graves <ngraves@ngraves.fr> | 2025-11-21 19:12:28 +0100 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-11-22 16:10:12 +0000 |
| commit | b353635cbec4bbf3ad9ba487355f344be4089e9b (patch) | |
| tree | 07c1ba463b41cb2db09561f78e84eb7240fde012 /gnu/packages | |
| parent | 507c413cbaebc2ca904851dcf3c1f1ab24806fae (diff) | |
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>
Diffstat (limited to 'gnu/packages')
| -rw-r--r-- | gnu/packages/python-xyz.scm | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 81815ab1f4c..d209bfe46f6 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 |
