From 6c09bf9434e2f0b336fbf82bd0d2ddf6b958fd83 Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Sat, 19 Apr 2025 10:10:30 +0100 Subject: [PATCH] gnu: python-mgatk: Update to 0.7.0. * gnu/packages/bioinformatics.scm (python-mgatk): Update to 0.7.0. [arguments] : Remove 'python3-compatibility as resolved upstream. Change-Id: I389dd546f4a112bf52758c216baedfdcf0613bf9 --- gnu/packages/bioinformatics.scm | 24 +++++++----------------- 1 file changed, 7 insertions(+), 17 deletions(-) diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm index e1cac1f149a..7eec4350ced 100644 --- a/gnu/packages/bioinformatics.scm +++ b/gnu/packages/bioinformatics.scm @@ -17404,31 +17404,21 @@ API services.") (define-public python-mgatk (package (name "python-mgatk") - (version "0.6.7") + (version "0.7.0") (source (origin - (method git-fetch) + (method git-fetch) ; no tests in PyPI archive (uri (git-reference (url "https://github.com/caleblareau/mgatk") - ;; There is no tag for 0.6.7, but this is the commit - ;; corresponding to the version bump. - (commit "2633903acb1fb406bb58c787f320c3641f446ee7"))) + ;; There is no tag for 0.7.0, but this is the commit + ;; corresponding to the version bump, see + ;; . + (commit "8ffeac8476564049ef51b4d4d40eed452ae2fc38"))) (file-name (git-file-name name version)) (sha256 (base32 - "19iklfv1brwsfg1l5lrs3z8m343nskkn1998c1fs7fdn0lgrki2p")))) + "1qspzglj487bpyg8wpc29fjr8mj993q8w3jrdhylggiqpjx4l607")))) (build-system pyproject-build-system) - (arguments - (list - #:phases - #~(modify-phases %standard-phases - ;; The md5 module has been removed in Python 3 - (add-after 'unpack 'python3-compatibility - (lambda _ - (substitute* "tests/test_cli.py" - (("import md5") "from hashlib import md5") - (("md5.new") "md5") - (("\\.digest") ".hexdigest"))))))) (propagated-inputs (list python-biopython python-click