diff options
| author | Nicolas Graves <ngraves@ngraves.fr> | 2025-09-20 18:17:26 +0200 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-09-25 09:36:36 +0100 |
| commit | df82493b09556297da5aaaa1c7f7ca621284352d (patch) | |
| tree | 5cc232b63f1b023a7e26542a3a556265926b1281 /gnu/packages/python-xyz.scm | |
| parent | 7daad3f5f03c791f4b3db7293856e5254d8c2c56 (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>
Diffstat (limited to 'gnu/packages/python-xyz.scm')
| -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 2b188c5bfc..418403b3ba 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -11137,16 +11137,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 |
