blob: 7af65721053b64dce40a88207f0679ec68ae4185 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{9..11} )
DISTUTILS_USE_PEP517=setuptools
inherit distutils-r1
DESCRIPTION="Python library for communicating with Pocket Science Lab"
HOMEPAGE="
https://pslab.io/
https://github.com/fossasia/pslab-python/
https://pypi.org/project/pslab/
"
SRC_URI="
https://github.com/fossasia/pslab-python/archive/v${PV}.tar.gz
-> ${P}.gh.tar.gz
"
LICENSE="GPL-3+"
SLOT="0"
KEYWORDS="amd64"
RDEPEND="
>=dev-python/numpy-1.16.3[${PYTHON_USEDEP}]
>=dev-python/pyserial-3.4[${PYTHON_USEDEP}]
>=dev-python/scipy-1.3.0[${PYTHON_USEDEP}]
"
BDEPEND="
test? (
dev-python/pytest-mock[${PYTHON_USEDEP}]
)
"
PATCHES=(
"${FILESDIR}"/${PN}-2.5.0-ad9833_sys_version.patch
)
# Flaky in 2.5.0
EPYTEST_DESELECT=(
tests/test_logic_analyzer.py::test_stop
)
distutils_enable_tests pytest
distutils_enable_sphinx docs dev-python/recommonmark
|