mirror of
https://codeberg.org/guix/guix.git
synced 2026-01-25 12:05:19 -06:00
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
This commit is contained in:
parent
233a3e9191
commit
6c09bf9434
1 changed files with 7 additions and 17 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue