diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-04-19 10:10:30 +0100 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-04-19 10:17:34 +0100 |
commit | 6c09bf9434e2f0b336fbf82bd0d2ddf6b958fd83 (patch) | |
tree | f2f739710f3eddd21f97a792a29c7d7e75521077 | |
parent | 233a3e91910625b68b44b7e9df61751d4530636b (diff) | |
download | guix-6c09bf9434e2f0b336fbf82bd0d2ddf6b958fd83.tar.gz guix-6c09bf9434e2f0b336fbf82bd0d2ddf6b958fd83.zip |
gnu: python-mgatk: Update to 0.7.0.
* gnu/packages/bioinformatics.scm (python-mgatk): Update to 0.7.0.
[arguments] <phases>: Remove 'python3-compatibility as resolved
upstream.
Change-Id: I389dd546f4a112bf52758c216baedfdcf0613bf9
-rw-r--r-- | gnu/packages/bioinformatics.scm | 24 |
1 files changed, 7 insertions, 17 deletions
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm index e1cac1f149..7eec4350ce 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 + ;; <https://github.com/caleblareau/mgatk/issues/101>. + (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 |