diff options
author | Nicolas Graves <ngraves@ngraves.fr> | 2025-09-20 18:17:26 +0200 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-09-20 19:27:03 +0100 |
commit | 17e29589b4ae0916f31f6ca55c99c1265a287b3b (patch) | |
tree | 9c13046b8b880b18cf3167e5c4434aba499420f4 | |
parent | 0d703d3822da852df08e22df6507059bcb7ead45 (diff) |
gnu: python-merge3: Run tests and fix them.
* gnu/packages/python-xyz.scm (python-merge3)
[source]: Switch to git-fetch.
[arguments]<#:test-backend>: Set it.
[native-inputs]: Remove python-wheel.
Change-Id: I57dc757b036cee4baba12c0021a5ddb5aab65a26
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
-rw-r--r-- | gnu/packages/python-xyz.scm | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index e77a965746..263d78171b 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -11161,16 +11161,19 @@ humans, and implementation simplicity.") (version "0.0.15") (source (origin - (method url-fetch) - (uri (pypi-uri "merge3" version)) + (method git-fetch) + (uri (git-reference + (url "https://github.com/breezy-team/merge3") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) (sha256 - (base32 "1brb97v24i5ym3cfxsv416a0m1n78s1aqllmwg4xymjdv09w5snk")))) + (base32 "0p52fdzra86d03p5gwz7wmb2pgzkv0frgdhhg9wfld8qr0611wp4")))) (build-system pyproject-build-system) - (native-inputs (list python-setuptools python-wheel)) + (arguments (list #:test-backend #~'unittest)) + (native-inputs (list python-setuptools)) (home-page "https://github.com/breezy-team/merge3") (synopsis "Python implementation of 3-way merge") - (description - "This Python library implements 3-way merge for text.") + (description "This Python library implements 3-way merge for text.") (license license:gpl2+))) (define-public python-wmctrl |