From 38b8260a4db6b5a7ead200e89fe609aa1d790b53 Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Sat, 3 Jan 2026 17:56:03 +0000 Subject: [PATCH] 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 Signed-off-by: Rutherther --- 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 4c069f403deb459c43aa0be4e6b895b63c2c9b50..2af47b59eee888aa7ef85e2013f02e8e052739e6 100644 --- a/gnu/packages/bioinformatics.scm +++ b/gnu/packages/bioinformatics.scm @@ -17485,11 +17485,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")