~ruther/guix-local

38b8260a4db6b5a7ead200e89fe609aa1d790b53 — Sharlatan Hellseher 2 months ago 9448d50
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>
1 files changed, 11 insertions(+), 4 deletions(-)

M gnu/packages/bioinformatics.scm
M gnu/packages/bioinformatics.scm => gnu/packages/bioinformatics.scm +11 -4
@@ 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")