Gentoo Archives: gentoo-commits

From: Horea Christian <horea.christ@×××××.com>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/sci:master commit in: dev-python/nwbinspector/
Date: Wed, 07 Sep 2022 14:38:20
Message-Id: 1662561479.72a7eb2f4a6f11d0903fcdf6c4caec5f7704c15b.chymera@gentoo
1 commit: 72a7eb2f4a6f11d0903fcdf6c4caec5f7704c15b
2 Author: Horea Christian <chr <AT> chymera <DOT> eu>
3 AuthorDate: Wed Sep 7 14:37:59 2022 +0000
4 Commit: Horea Christian <horea.christ <AT> gmail <DOT> com>
5 CommitDate: Wed Sep 7 14:37:59 2022 +0000
6 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=72a7eb2f
7
8 dev-python/nwbinspector: add 0.4.12
9
10 Signed-off-by: Horea Christian <chr <AT> chymera.eu>
11
12 dev-python/nwbinspector/nwbinspector-0.4.12.ebuild | 37 ++++++++++++++++++++++
13 1 file changed, 37 insertions(+)
14
15 diff --git a/dev-python/nwbinspector/nwbinspector-0.4.12.ebuild b/dev-python/nwbinspector/nwbinspector-0.4.12.ebuild
16 new file mode 100644
17 index 000000000..a58c8f5d3
18 --- /dev/null
19 +++ b/dev-python/nwbinspector/nwbinspector-0.4.12.ebuild
20 @@ -0,0 +1,37 @@
21 +# Copyright 2022 Gentoo Authors
22 +# Distributed under the terms of the GNU General Public License v2
23 +
24 +EAPI=8
25 +
26 +DISTUTILS_USE_PEP517=setuptools
27 +PYTHON_COMPAT=( python3_{8..10} )
28 +inherit distutils-r1
29 +
30 +DESCRIPTION="Inspect NWB files for compliance with NWB Best Practices"
31 +HOMEPAGE="https://github.com/NeurodataWithoutBorders/nwbinspector"
32 +SRC_URI="https://github.com/NeurodataWithoutBorders/nwbinspector/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
33 +
34 +LICENSE="BSD"
35 +SLOT="0"
36 +KEYWORDS="~amd64 ~x86"
37 +IUSE="test"
38 +RESTRICT="!test? ( test )"
39 +
40 +DEPEND=""
41 +RDEPEND="
42 + dev-python/jsonschema[${PYTHON_USEDEP}]
43 + dev-python/natsort[${PYTHON_USEDEP}]
44 + dev-python/pynwb[${PYTHON_USEDEP}]
45 + dev-python/pyyaml[${PYTHON_USEDEP}]
46 +"
47 +BDEPEND=""
48 +
49 +distutils_enable_tests pytest
50 +
51 +python_test() {
52 + local EPYTEST_IGNORE=(
53 + tests/test_inspector.py
54 + tests/unit_tests/test_time_series.py
55 + )
56 + epytest
57 +}