guix_mirror_bot pushed a commit to branch master
in repository guix.
commit c8cde510aae245ec94228ad7e2ea91cbccf454c7
Author: Nicolas Graves <[email protected]>
AuthorDate: Mon Aug 17 21:15:21 2026 +0200
gnu: python-snakemake-interface-report-plugins: Update to 1.3.0.
* gnu/packages/python-science.scm
(python-snakemake-interface-report-plugins): Update to 1.3.0.
[arguments]{phases}: Replace them with {test-backend, test-flags}.
[propagated-inputs]: Remove python-pytest.
Relates-to: guix/guix!10625
Reviewed-by: Hugo Buddelmeijer <[email protected]>
Signed-off-by: Sharlatan Hellseher <[email protected]>
---
gnu/packages/python-science.scm | 20 ++++++++------------
1 file changed, 8 insertions(+), 12 deletions(-)
diff --git a/gnu/packages/python-science.scm b/gnu/packages/python-science.scm
index 783c2f7f8f..0c65b0ca55 100644
--- a/gnu/packages/python-science.scm
+++ b/gnu/packages/python-science.scm
@@ -5839,28 +5839,24 @@ its executor plugins.")
(define-public python-snakemake-interface-report-plugins
(package
(name "python-snakemake-interface-report-plugins")
- (version "1.1.0")
+ (version "1.3.0")
(source
(origin
(method git-fetch)
(uri (git-reference
- (url (string-append "https://github.com/snakemake/"
- "snakemake-interface-report-plugins"))
- (commit (string-append "v" version))))
+ (url (string-append "https://github.com/snakemake/"
+ "snakemake-interface-report-plugins"))
+ (commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
- (base32 "0i6z9vk6nv2m3jsym0glrb7h9isdlfza2yq14vbqcslybdi9ykfa"))))
+ (base32 "0i16ia88ym2y9092c9z1jxgmfmnfdha69hbm56ncnxdmsfch9s6y"))))
(build-system pyproject-build-system)
(arguments
(list
#:tests? #f ;circular dependency on snakemake
- #:phases
- #~(modify-phases %standard-phases
- (replace 'check
- (lambda* (#:key tests? #:allow-other-keys)
- (when tests?
- (invoke "python3" "tests/tests.py")))))))
- (propagated-inputs (list python-snakemake-interface-common python-pytest))
+ #:test-backend #~'custom
+ #:test-flags #~(list "tests/tests.py")))
+ (propagated-inputs (list python-snakemake-interface-common))
(native-inputs (list python-poetry-core))
(home-page (string-append "https://github.com/snakemake/"
"python-snakemake-interface-report-plugins"))