summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--guix-science/packages/electrophysiology.scm26
1 files changed, 13 insertions, 13 deletions
diff --git a/guix-science/packages/electrophysiology.scm b/guix-science/packages/electrophysiology.scm
index 98b6e62..3964c49 100644
--- a/guix-science/packages/electrophysiology.scm
+++ b/guix-science/packages/electrophysiology.scm
@@ -2659,7 +2659,7 @@ head direction.")
2659(define-public python-probeinterface 2659(define-public python-probeinterface
2660 (package 2660 (package
2661 (name "python-probeinterface") 2661 (name "python-probeinterface")
2662 (version "0.3.1") 2662 (version "0.3.2")
2663 (source 2663 (source
2664 (origin 2664 (origin
2665 (method git-fetch) 2665 (method git-fetch)
@@ -2668,7 +2668,7 @@ head direction.")
2668 (commit version))) 2668 (commit version)))
2669 (file-name (git-file-name name version)) 2669 (file-name (git-file-name name version))
2670 (sha256 2670 (sha256
2671 (base32 "04l397z2zs2i05pc52z9llk26gq5qmbsc919mcgjvh6f041cjiyx")))) 2671 (base32 "1dk8lshzkzb76mcdhvpsf2f69sig1s36cnxcxgpr9bb9awyl32x6"))))
2672 (build-system pyproject-build-system) 2672 (build-system pyproject-build-system)
2673 (arguments 2673 (arguments
2674 (list 2674 (list
@@ -2676,23 +2676,23 @@ head direction.")
2676 #~(list 2676 #~(list
2677 ;; Requires external data. 2677 ;; Requires external data.
2678 "--ignore=tests/test_library.py" 2678 "--ignore=tests/test_library.py"
2679 "--ignore=tests/test_wiring.py") 2679 "--ignore=tests/test_wiring.py"
2680 ;; Requires zarr 2.
2681 "--deselect=tests/test_probe.py::test_save_to_zarr")
2680 #:phases 2682 #:phases
2681 #~(modify-phases %standard-phases 2683 #~(modify-phases %standard-phases
2682 (add-before 'build 'set-home 2684 (add-before 'build 'set-home
2683 (lambda _ 2685 (lambda _
2684 (setenv "HOME" 2686 (setenv "HOME"
2685 (getcwd))))))) 2687 (getcwd)))))))
2686 (propagated-inputs (list python-h5py 2688 (propagated-inputs (list python-numpy python-packaging python-requests))
2687 python-jsonschema 2689 (native-inputs (list python-h5py
2688 python-matplotlib 2690 python-hatchling
2689 python-numpy 2691 python-jsonschema
2690 python-packaging 2692 python-matplotlib
2691 python-pandas 2693 python-pandas
2692 python-requests 2694 python-pytest
2693 python-scipy 2695 python-scipy))
2694 python-zarr))
2695 (native-inputs (list python-hatchling python-pytest))
2696 (home-page "https://github.com/SpikeInterface/probeinterface") 2696 (home-page "https://github.com/SpikeInterface/probeinterface")
2697 (synopsis 2697 (synopsis
2698 "Python package to handle probe layout, geometry and wiring to device.") 2698 "Python package to handle probe layout, geometry and wiring to device.")