[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
03/04: gnu: python-dnaio: Update to 0.10.0.
From: |
guix-commits |
Subject: |
03/04: gnu: python-dnaio: Update to 0.10.0. |
Date: |
Mon, 3 Jul 2023 10:40:05 -0400 (EDT) |
rekado pushed a commit to branch master
in repository guix.
commit cb15c60d35f33133a194daff8bd1303fcdbea2f0
Author: Ricardo Wurmus <rekado@elephly.net>
AuthorDate: Mon Jul 3 16:36:53 2023 +0200
gnu: python-dnaio: Update to 0.10.0.
* gnu/packages/bioinformatics.scm (python-dnaio): Update to 0.10.0.
[arguments]: Disable tests, because they don't exist.
[build-system]: Use pyproject-build-system.
[native-inputs]: Add python-setuptools-scm; move python-xopen from here...
[propagated-inputs]: ...to here.
---
gnu/packages/bioinformatics.scm | 12 ++++++++----
1 file changed, 8 insertions(+), 4 deletions(-)
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm
index 98f344aa20..28c9edcc14 100644
--- a/gnu/packages/bioinformatics.scm
+++ b/gnu/packages/bioinformatics.scm
@@ -3859,17 +3859,21 @@ file formats including SAM/BAM, Wiggle/BigWig, BED,
GFF/GTF, VCF.")
(define-public python-dnaio
(package
(name "python-dnaio")
- (version "0.6.0")
+ (version "0.10.0")
(source
(origin
(method url-fetch)
(uri (pypi-uri "dnaio" version))
(sha256
(base32
- "14v5yyasq2bz34j38wi3xfcp06jj7l35ppibjcn95l2n73hz3zwi"))))
- (build-system python-build-system)
+ "064xc4j8plb4fpkm8mw55715mvpvi2sxsknpjx18c2zh904salfy"))))
+ (build-system pyproject-build-system)
+ (arguments
+ (list #:tests? #false)) ;there are none
(native-inputs
- (list python-cython python-pytest python-xopen))
+ (list python-cython python-pytest python-setuptools-scm))
+ (propagated-inputs
+ (list python-xopen))
(home-page "https://github.com/marcelm/dnaio/")
(synopsis "Read FASTA and FASTQ files efficiently")
(description