~ruther/guix-local

6c09bf9434e2f0b336fbf82bd0d2ddf6b958fd83 — Sharlatan Hellseher 1 year, 1 month ago 233a3e9
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
1 files changed, 7 insertions(+), 17 deletions(-)

M gnu/packages/bioinformatics.scm
M gnu/packages/bioinformatics.scm => gnu/packages/bioinformatics.scm +7 -17
@@ 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