summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCASTELNEAU Julien <julien.castelneau@inria.fr>2024-12-13 14:39:02 +0100
committerLudovic Courtès <ludovic.courtes@inria.fr>2025-02-27 17:32:06 +0100
commit73896671552486f8476749a763e793a1f3141c52 (patch)
treedb1059ac3988386275781d7d160169f4f5d0c640
parent5259e8c0c8ce6639f291bde63668e7272597b627 (diff)
neuroscience: Add python-acres.
* guix-science/packages/neuroscience.scm (python-acres): New variable. Signed-off-by: Ludovic Courtès <ludovic.courtes@inria.fr>
-rw-r--r--guix-science/packages/neuroscience.scm20
1 files changed, 20 insertions, 0 deletions
diff --git a/guix-science/packages/neuroscience.scm b/guix-science/packages/neuroscience.scm
index 3f97f1b..62527e9 100644
--- a/guix-science/packages/neuroscience.scm
+++ b/guix-science/packages/neuroscience.scm
@@ -129,3 +129,23 @@ versions.")
129in Python by providing a way to define and manage attributes of 129in Python by providing a way to define and manage attributes of
130objects more effectively.") 130objects more effectively.")
131 (license license:bsd-3))) 131 (license license:bsd-3)))
132
133(define-public python-acres
134 (package
135 (name "python-acres")
136 (version "0.1.0")
137 (source
138 (origin
139 (method url-fetch)
140 (uri (pypi-uri "acres" version))
141 (sha256
142 (base32 "0nzlf30d2skkz51dcn6q7qrffxz6359rxnj7i4v4k61qhfb4fra7"))))
143 (build-system pyproject-build-system)
144 (propagated-inputs (list python-importlib-resources))
145 (native-inputs (list python-flit
146 python-pytest))
147 (home-page "https://github.com/nipreps/acres/")
148 (synopsis "Access resources on your terms")
149 (description "This module provides simple, consistent access to package resources.")
150 (license license:asl2.0)))
151