diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2026-01-03 17:56:03 +0000 |
|---|---|---|
| committer | Rutherther <rutherther@ditigal.xyz> | 2026-01-25 21:21:08 +0100 |
| commit | 38b8260a4db6b5a7ead200e89fe609aa1d790b53 (patch) | |
| tree | bdef325a4449fa11ff9a6296408ddd2993a37978 /gnu | |
| parent | 9448d50d2c918b2eceb22ca5c3841beae29eae3b (diff) | |
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 <rutherther@ditigal.xyz>
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/bioinformatics.scm | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm index 4c069f403d..2af47b59ee 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") |
