guix_mirror_bot pushed a commit to branch python-team
in repository guix.
commit 2c089bc98c088fdaeb946dfccc0883fa78c33525
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Sat Jan 3 17:56:03 2026 +0000
gnu: python-mygene: Switch to pyproject.
* gnu/packages/bioinformatics.scm (python-mygene):
[source]: Switch to git-fetch.
[build-system]: Switch to pyproject-build-system.
[native-inputs]: Add python-setuptools.
Change-Id: Ieb062c8dc8f8e2a8cede4b5d1bb816ec9d9d10db
---
gnu/packages/bioinformatics.scm | 15 +++++++++++----
1 file changed, 11 insertions(+), 4 deletions(-)
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm
index 0daa0acb16..1d4f957f45 100644
--- a/gnu/packages/bioinformatics.scm
+++ b/gnu/packages/bioinformatics.scm
@@ -17563,11 +17563,18 @@ transcriptomic changes.")
(version "3.2.2")
(source
(origin
- (method url-fetch)
- (uri (pypi-uri "mygene" version))
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/biothings/mygene.py")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
(sha256
- (base32 "1snszwdgfygchxshcbry3b5pbcw3g1isp8dw46razxccqaxwlag7"))))
- (build-system python-build-system)
+ (base32 "0f6mpbbcs72w20zxsnzdqbhn2ldxlafaq3qd0iwk6rfvwk66bb7w"))))
+ (build-system pyproject-build-system)
+ (arguments
+ (list #:tests? #f)) ;they need network connection
+ (native-inputs
+ (list python-setuptools))
(propagated-inputs
(list python-biothings-client))
(home-page "https://github.com/biothings/mygene.py")