guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

03/32: gnu: Add python-eeglabio.


From: guix-commits
Subject: 03/32: gnu: Add python-eeglabio.
Date: Wed, 16 Feb 2022 11:39:28 -0500 (EST)

nckx pushed a commit to branch wip-python-mne
in repository guix.

commit 593a0ef04347a35f1e3bdb7919fa15daa19d8f0a
Author: Vivien Kraus <vivien@planete-kraus.eu>
AuthorDate: Thu Jan 20 17:17:11 2022 +0100

    gnu: Add python-eeglabio.
    
    * gnu/packages/python-science.scm (python-eeglabio): New variable.
---
 gnu/packages/python-science.scm | 24 ++++++++++++++++++++++++
 1 file changed, 24 insertions(+)

diff --git a/gnu/packages/python-science.scm b/gnu/packages/python-science.scm
index c73802103d..78c84f4fe6 100644
--- a/gnu/packages/python-science.scm
+++ b/gnu/packages/python-science.scm
@@ -1080,3 +1080,27 @@ European Data Format}.  @dfn{BDF} is the
 @url{https://www.teuniz.net/edfbrowser/bdfplus%20format%20description.html,
 24-bit version} of EDF.")
     (license license:bsd-3)))
+
+(define-public python-eeglabio
+  (package
+    (name "python-eeglabio")
+    (version "0.0.1.post6")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/jackz314/eeglabio";)
+             (commit "5416e8f2bc82da60ee729458cf325bec66d9774a")))
+       (sha256
+        (base32
+         "0zpb1xcvm4wzli2gfly7hr0486cnr8pl7f70dh58jmh4nj87z6i7"))))
+    (build-system python-build-system)
+    (arguments
+     `(;; Tests require MNE
+       #:tests? #f))
+    (propagated-inputs (list python-numpy python-scipy))
+    (native-inputs (list python-pytest))
+    (home-page "https://github.com/jackz314/eeglabio";)
+    (synopsis "I/O support for EEGLAB files in Python")
+    (description "This project provides I/O support for EEGLAB files in 
Python.")
+    (license license:bsd-3)))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]