guix_mirror_bot pushed a commit to branch master
in repository guix.
commit 2a52c1ac1392352d354fe5fd718a14ab217c0d89
Author: Nicolas Graves <[email protected]>
AuthorDate: Mon Aug 17 21:16:26 2026 +0200
gnu: python-snakemake-interface-software-deployment-plugins: Update to
0.18.6.
* gnu/packages/python-science.scm
(python-snakemake-interface-software-deployment-plugins): Update to 0.18.6.
[arguments]{phases}: Replace them with {test-flags}.
[native-inputs]: Add python-hatchling, python-pytest,
python-snakemake-software-deployment-plugin-envmodules-bootstrap.
Relates-to: guix/guix!10625
Reviewed-by: Hugo Buddelmeijer <[email protected]>
Signed-off-by: Sharlatan Hellseher <[email protected]>
---
gnu/packages/python-science.scm | 22 ++++++++++------------
1 file changed, 10 insertions(+), 12 deletions(-)
diff --git a/gnu/packages/python-science.scm b/gnu/packages/python-science.scm
index caece99078..cf25020f91 100644
--- a/gnu/packages/python-science.scm
+++ b/gnu/packages/python-science.scm
@@ -5899,29 +5899,27 @@ between Snakemake and its report plugins.")
(define-public python-snakemake-interface-software-deployment-plugins
(package
(name "python-snakemake-interface-software-deployment-plugins")
- (version "0.6.1")
+ (version "0.18.6")
(source
(origin
(method git-fetch)
(uri (git-reference
- (url (string-append "https://github.com/snakemake/"
- "snakemake-interface-software-deployment-plugins"))
- (commit (string-append "v" version))))
+ (url (string-append "https://github.com/snakemake/"
+
"snakemake-interface-software-deployment-plugins"))
+ (commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
- (base32 "0b4kkznfyfck9f92pkimhyl13ljisfn67rsilm1a5inq2ywpmxba"))))
+ (base32 "10dv8317ryxa05bdfyy6hqlwjxl0crnhfy66zvsl662zvzcb2hm6"))))
(build-system pyproject-build-system)
(arguments
(list
- #:phases
- #~(modify-phases %standard-phases
- (replace 'check
- (lambda* (#:key tests? #:allow-other-keys)
- (when tests?
- (invoke "python3" "tests/tests.py")))))))
+ #:test-flags #~(list "--ignore=tests/test_py37.py")))
(propagated-inputs (list python-argparse-dataclass
python-snakemake-interface-common))
- (native-inputs (list python-poetry-core))
+ (native-inputs
+ (list python-hatchling
+ python-pytest
+ python-snakemake-software-deployment-plugin-envmodules-bootstrap))
(home-page (string-append "https://github.com/snakemake/"
"snakemake-interface-software-deployment-plugins"))
(synopsis "Interface for Snakemake software deployment plugins")