ChatGPT return to the prompt « Provide the Scheme source code for the Guix recipe of the Python package tedana »
(define-module (python-tdana)
#:use-module (guix)
#:use-module (guix packages)
#:use-module (guix download)
#:use-module (guix build-system python)
#:use-module (guix pypi)
;; Define the package
(define-public python-tdana
(package
(name "python-tdana")
(version "0.1.0") ; Replace with the latest version if necessary
(source
(origin
(method url-fetch)
(uri (pypi-uri "tedana" version))
(sha256
(base32
"0jjllm3lb84w6sbx23jl9fv92y3hsrx0w0rc7rf9vhfqdbd2jx")) ; Replace with the correct checksum
))
(build-system python-build-system)
(native-inputs
`(("python-setuptools" ,python-setuptools)))
(home-page "https://github.com/tedana/tedana") ;; Update with actual homepage
(synopsis "A Python library for analyzing task-based fMRI data with TED")
(description
"Tedana is a Python library designed for the analysis of task-based fMRI data using TED (Task-evoked Data Analysis).")
(license license:bsd-3)))
2/2