From 68963327870d768bead3260e6b3a3528b487b069 Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Thu, 30 Oct 2025 11:16:08 +0000 Subject: [PATCH] gnu: python-twobitreader: Update to 3.1.9. * gnu/packages/bioinformatics.scm (python-twobitreader): Update to 3.1.9. [build-system]: Switch to pyproject-build-system. [arguments] : Enable. [native-inputs]: Remove python-sphinx; add python-pytest and python-setuptools. Change-Id: I1c8d450611f1a3f3d271606bb744dd24c5f60d4d --- gnu/packages/bioinformatics.scm | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm index 9b9d2449cb2ed8d74a3b57e5ed6fd72c3f0fddb8..b820182e20e5283fd247f83cb8ea70483b1aa3f2 100644 --- a/gnu/packages/bioinformatics.scm +++ b/gnu/packages/bioinformatics.scm @@ -6112,7 +6112,7 @@ also includes an interface for tabix.") (define-public python-twobitreader (package (name "python-twobitreader") - (version "3.1.6") + (version "3.1.9") (source (origin (method git-fetch) (uri (git-reference @@ -6121,12 +6121,11 @@ also includes an interface for tabix.") (file-name (git-file-name name version)) (sha256 (base32 - "1qbxvv1h58cismbk1anpjrkpghsaiy64a11ir3lhy6qch6xf8n62")))) - (build-system python-build-system) - ;; Tests are not included - (arguments '(#:tests? #f)) + "1yk86vgdh43wpg8wv4riiff3qv0nrmizxzv774ghjkgiss4g1l2q")))) + (build-system pyproject-build-system) (native-inputs - (list python-sphinx)) + (list python-pytest + python-setuptools)) (home-page "https://github.com/benjschiller/twobitreader") (synopsis "Python library for reading .2bit files") (description