[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
07/18: gnu: python-dna-features-viewer: Update to 3.1.1.
From: |
guix-commits |
Subject: |
07/18: gnu: python-dna-features-viewer: Update to 3.1.1. |
Date: |
Mon, 12 Dec 2022 09:25:53 -0500 (EST) |
rekado pushed a commit to branch wip-python-graphviz
in repository guix.
commit 58796719a056638d8405192e5af71cc3d516216b
Author: Ricardo Wurmus <rekado@elephly.net>
AuthorDate: Sat Dec 10 14:39:57 2022 +0100
gnu: python-dna-features-viewer: Update to 3.1.1.
* gnu/packages/bioinformatics.scm (python-dna-features-viewer):
Update to 3.1.1.
[build-system]: Use pyproject-build-system.
[arguments]: Add build phase to fix a compatibility problem with biopython.
[propagated-inputs]: Add python-packaging.
---
gnu/packages/bioinformatics.scm | 23 ++++++++++++++++++-----
1 file changed, 18 insertions(+), 5 deletions(-)
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm
index ea33311a2c..371bf1077a 100644
--- a/gnu/packages/bioinformatics.scm
+++ b/gnu/packages/bioinformatics.scm
@@ -16597,18 +16597,31 @@ feature is fast retrieval of range queries into numpy
arrays.")
(define-public python-dna-features-viewer
(package
(name "python-dna-features-viewer")
- (version "3.0.3")
+ (version "3.1.1")
(source
(origin
(method url-fetch)
(uri (pypi-uri "dna_features_viewer" version))
(sha256
(base32
- "0vci6kg2id6r6rh3cifq7ccnh7j0mb8iqg3hji6rva0ayrdqzafc"))))
- (build-system python-build-system)
- (arguments '(#:tests? #false)) ; there are none
+ "10a5pmh73spdgfml88zjqg1rn2j2zdxn06ir8a5q3arspyqvyqcb"))))
+ (build-system pyproject-build-system)
+ (arguments
+ (list
+ #:tests? #false ;there are none
+ #:phases
+ '(modify-phases %standard-phases
+ ;; See
https://github.com/Edinburgh-Genome-Foundry/DnaFeaturesViewer/issues/73
+ ;; and
https://github.com/Edinburgh-Genome-Foundry/DnaFeaturesViewer/pull/74
+ (add-after 'unpack 'fix-biopython-compatibility
+ (lambda _
+ (substitute* "dna_features_viewer/biotools.py"
+ (("zip\\(aa1 \\+ \"\\*\", aa3 \\+ \\[\"\\*\"\\]\\)")
+ "zip(aa1 + ('*',), aa3 + ('*',))")))))))
(propagated-inputs
- (list python-biopython python-matplotlib))
+ (list python-biopython
+ python-matplotlib
+ python-packaging))
(home-page
"https://github.com/Edinburgh-Genome-Foundry/DnaFeaturesViewer")
(synopsis "Plot features from DNA sequences")
- branch wip-python-graphviz created (now 1e9e25a165), guix-commits, 2022/12/12
- 07/18: gnu: python-dna-features-viewer: Update to 3.1.1.,
guix-commits <=
- 01/18: gnu: python-graphviz: Update to 0.20.1., guix-commits, 2022/12/12
- 05/18: gnu: python-pygenometracks: Update to 3.5., guix-commits, 2022/12/12
- 12/18: gnu: python-flask-restful: Update to 0.3.9., guix-commits, 2022/12/12
- 03/18: gnu: python-biopython: Update to 1.80., guix-commits, 2022/12/12
- 09/18: gnu: sqlite-next: Update to 3.40.0., guix-commits, 2022/12/12
- 17/18: gnu: seqmagick: Update to 0.8.4., guix-commits, 2022/12/12
- 02/18: gnu: python-hyperopt: Update to 0.2.7., guix-commits, 2022/12/12
- 04/18: gnu: python-hicmatrix: Update to 16., guix-commits, 2022/12/12
- 08/18: gnu: python-bokeh: Skip failing PIL test., guix-commits, 2022/12/12
- 06/18: gnu: python-hicexplorer: Update to 3.7.2., guix-commits, 2022/12/12