1
0
Fork 0

dev-python/probeinterface: new package (DANDI ephys stack)

Package-Manager: Portage-3.0.23, Repoman-3.0.3
Signed-off-by: Horea Christian <chr@chymera.eu>
This commit is contained in:
Horea Christian 2021-10-09 02:02:16 -04:00
parent 09d9c10e64
commit ffff57b9bc
No known key found for this signature in database
GPG Key ID: 161C0BE6255333D3
4 changed files with 60 additions and 0 deletions

View File

@ -0,0 +1,5 @@
*probeinterface-0.2.5 (09 Oct 2021)
09 Oct 2021; <chymera@gentoo.org> +metadata.xml,
+probeinterface-0.2.5.ebuild:
dev-python/probeinterface: new package (DANDI ephys stack)

View File

@ -0,0 +1 @@
DIST probeinterface-0.2.5.tar.gz 154572 SHA256 7d9b7b8587d74b8994b90e5d0bf59b73a7081cce7ea69912168ed00cfaf75276 SHA512 fdf170e1e4057445b0c8701105c7e6283258b460b1250e992f9896d6d3a0feacf3eb7dc6f8b35b77f591e1654930bd20d548758ea01b5d4cdb15a57dac24c4f9 WHIRLPOOL 3b1f00ff7fa5db50057f3dc1545954c7eca9a52e7dad417184966c950467eededb53548d496f0be8ba48cd56f9bd426c2c7a027d53c9cfce7f40436fd82728fd

View File

@ -0,0 +1,15 @@
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
<email>gentoo@chymera.eu</email>
<name>Horea Christian</name>
</maintainer>
<maintainer type="project">
<email>sci@gentoo.org</email>
<name>Gentoo Science Project</name>
</maintainer>
<upstream>
<remote-id type="github">SpikeInterface/probeinterface</remote-id>
</upstream>
</pkgmetadata>

View File

@ -0,0 +1,39 @@
# Copyright 2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{8..10} )
inherit distutils-r1
DESCRIPTION="Python package to handle probe layout, geometry and wiring to device"
HOMEPAGE="https://github.com/SpikeInterface/probeinterface"
SRC_URI="https://github.com/SpikeInterface/probeinterface/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="test"
RESTRICT="!test? ( test )"
DEPEND=""
RDEPEND="
dev-python/numpy[${PYTHON_USEDEP}]
dev-python/matplotlib[${PYTHON_USEDEP}]
dev-python/pandas[${PYTHON_USEDEP}]
"
BDEPEND=""
distutils_enable_tests pytest
python_test() {
local EPYTEST_DESELECT=(
# Requires network access:
# https://github.com/SpikeInterface/probeinterface/issues/70
tests/test_library.py::test_download_probeinterface_file
tests/test_library.py::test_get_from_cache
tests/test_library.py::test_get_probe
tests/test_wiring.py::test_wire_probe
)
epytest tests
}